﻿:root{
    --tipoletra: SweetPineapple;
    --colorverde: rgba(30, 185, 69, 0.5);
    --CursorJuego: url(../Assets/Cursores/BlueCGC.cur), auto;
    --CursorBlanco: url(../Assets/Cursores/WhiteCGC.cur), auto;
    --CardRadius: 10px;
    --SombraNegra: 1px 2px 8px rgba(0, 0, 0, 0.3);
    --SombraNegraAlta: 1px 3px 9px 2px rgba(0, 0, 0, 0.5);
    --SombraAzul:  1px 2px 8px rgba(66, 82, 224, 0.521);
    --SombraRosa: 2px 2px 9px 2px #E8CBC0;
    --ColorH3: rgb(110, 99, 99);
}

@font-face {
    font-family:"SweetPineapple";
    src: url("../Assets/Fonts/sweetpineapple-webfont.woff") format("woff"), 
    url("../Assets/Fonts/sweetpineapple-webfont.woff2") format("woff2")
}

html{
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Calibri, Arial;
    background: #E8CBC0;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #636FA4, #E8CBC0);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #636FA4, #E8CBC0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    zoom: 60%;
    margin: 0;

  }

  h2{
      margin: 15px 0;
      font-weight:700;
      font-size: 70px;
      text-align:center;
      color:white;
      font-family: var(--tipoletra);
  }
  h3{
      font-weight:600;
      font-size: 30px;
      font-family: var(--tipoletra);
      color: var(--ColorH3);
      margin-top: 20px;
      margin-bottom: 5px;
      text-align:center;
  }
  

#collage{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}


#collage #playPanel {
    background-color:#c2defc;
    padding:10px 0px;
    margin: 10px auto;
    height: 100%;
    max-width:600px;
    width:auto;
    border-radius: var(--CardRadius);
    box-shadow: var(--SombraNegra);
    transition: all 500ms ease-in-out;
}

#collage #playPanel:hover{
    box-shadow: var(--SombraRosa);
}

#collage #actualImageBox {
    display: inline-block;
    font-size:15px;
    vertical-align: top;
    width:280px;
    position: relative;
    left: 150px;
    margin-bottom: 10px;
}

#collage #stepBox, #collage #timeBox {
    display:inline-block;
    text-align: center;
    width:100%;
    margin-bottom: 10px;
    font-family: 'verdana';
    font-weight: 700;
}


#collage img#actualImage{
    border:2px solid transparent;
    border-radius: 30px;
    height:280px;
    width:280px;
    box-shadow: var(--SombraAzul);
    
}

#collage img#actualImage:hover{
    animation: grow 2.50s;
    cursor: var(--CursorBlanco);
}

@keyframes grow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.3);
    }
}

.antsortable{
    width: 100%;
    height: 100%;
}

#collage #sortable {
    border: 1px solid transparent;
    border-radius:8px;
    box-shadow: var(--SombraNegra);
    overflow: hidden;
    list-style-type: none;
    display: inline-block;
    margin: 10px;
    padding: 0;
    width: 400px;
    position: relative;
    left: 90px;
}

    #collage #sortable li {
        background-size: 400% 400%;
        border: none;
        cursor: var(--CursorJuego);
        margin: 0;
        padding: 0;
        float: left;
        width: 100px;
        height: 100px;
    }

#collage button  {
    background-color:#E8CBC0;
    color: rgb(66, 85, 172);
    border:1px solid transparent;
    border-radius: var(--CardRadius);
    display: inline;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    width: auto;
    padding: 6px 12px;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-in-out;
}

#collage button:hover{
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.7);
    cursor: var(--CursorBlanco);
    background:  linear-gradient(to right, #636fa41c, #e8cbc094);
}

.botones-container{
    margin: 25px auto;
    position: relative;
    left: 25px;
}

.contenedor::after{
    content: "";
}

#levelPanel{
    display: none;
}

#gameOver{
    border: 1px solid transparent;
    width: 400px;

}

#goText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px ;
    box-shadow: var(--SombraAzul);
    padding: 8px;
    transition: 400ms ease-in-out;

}

#goText:hover{
    box-shadow: var(--SombraRosa);
}

#goText h2{
    color: var(--ColorH3);
    margin: -2px 0;
    font-size: 40px;
}

#goText p{
    padding: 2px;
    margin: 2px 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto';
    color: var(--ColorH3);
    text-align: center;
}