@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200&display=swap');

:root {
    --pink: #F277C7;
    --purple: #B091F2;
    --green: #50F268;
    --yellow: #EFF288;
    --blue: #85DEF1;
    --orange: #D19960;
    --dark: #191A21;
    --grey: #303440;
    --white: #F8F8F8;
}

@font-face {
    font-family:"CutiveMono";
    src: url("../assets/fonts/CutiveMono-Regular.ttf");
}

* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: "CutiveMono", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark);
    width:100%;

}

header{
    display: flex;
    flex-wrap: wrap;
    background-color: var(--grey);
    width: 100%;
    padding:0;
    margin:0;
   
}


.text-logo{
    justify-content: flex-start;
    text-align: left;
    background-color: var(--grey);
    color: var(--pink);
    letter-spacing: 5px;
    padding: 10px 20px 0 20px;
    width:50%;
    font-size: 30px;
   
}

#text-logo{
    max-width:400px;
    margin:10px 20px;
}


.navegator {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: center;
    padding:0 10px;
    width: 100%;
    margin: 0;
    list-style-type: none;
    width: 50%;
    background-color: var(--grey);
}

.navegator li{
  
    max-height: 50px;
    margin: 5px 5px;
    text-align: center;
   
}


.menu {
    color: var(--pink);
    width:auto;
    font-size: 25px;
    padding: 5px;
    border: 2px solid var(--blue); 
    border-radius:10px ;
    transition: 0.3s;
    
}

a {
   
    text-decoration-line: none;
}

.menu:hover {
  
    background-color:  var(--blue); 
    font-weight: bold; 
  
}

.main{
    display: flex;
    flex-direction: column;
   
}



h2 {
    font-size: 42px;
    margin: 20px;
    text-align: center;
}

#reels{
    display: flex;
    justify-content: center;
}

#game-audio{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--purple);
}
.images{
    display:flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 10px;
    justify-content: space-around;
    margin-left: 0;
    
}

.image-container{
   
    margin: 10px 5px;
    width: 23%;
    min-height: 80px;
    min-width: 300px;
    z-index: 0;
    cursor: pointer;
   
}

.game-image{
  
    width: 100%;
    border-radius: 10px;
    z-index: 1;
    opacity: 0.7;
    transition: 0.2s;

}

.game-image:hover{
   
    opacity: 1;
    border: 2px solid var(--blue);
    
}

#music{
    color:var(--green);
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;

}

.musicIcons{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding:0 30px;
    justify-content:center;
    
}

#musicIcons{
    width: 20%;
    max-width: 150px;
    min-width: 100px;
    height: fit-content;
}

#musicIcons img{
    filter: invert(60%);
    width:100%;
    padding: 20px;
}

#musicIcons img:hover{
    filter:invert(90%);
}

#licencing h2{
    color: var(--orange)
}
.licencing {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    width: 100%;
    margin: auto;
    justify-content: center;
    text-align: center;
  }
  
  .licencing li a {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    height: 52px;
    width: 400px;
    max-width:90%;
    font-size: 20px;;
    border-radius: 10px;
    text-decoration: none;
    background: var(--grey);
    border: 2px solid var(--blue); 
    color: var(--pink);
    font-weight: 500;
    transition: background 0.2s;
  }
  
  ul li a:hover {
    background-color: var(--blue);
   font-weight: 700;
  }

  #bio{
    justify-content: center;
    
    }

    #bioInfo{
        display: flex;
        flex-direction: column;
        margin: auto;
        align-items: center;


    }

#bio h2{
    color: var(--purple)

}

#bioText{
    width: 100%;
    padding: 30px;
    color: var(--white);
    max-width: 900px;
    font-size: 20px;
}

#bioImage{
    width: 100%;
    height: fit-content;
    padding: 30px;
    margin: auto;
    text-align: center;
}

#profile{
    width: 100%;
    max-width: 600px;
    height: fit-content;
    margin: auto;
    border-radius: 50%;
   
}

.articles{
    color: var(--yellow);
    padding: 10px 30px;
    margin: auto;
}

#articles{
    color: var(--yellow);
    text-decoration: underline;
}

#contact h2{
    color: var(--pink)

}

.form-container{
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
}

.formLabel{
    display: flex;
    flex-direction: column;
    color: var(--orange);
    font-size: 30px;
    margin: auto;
    justify-content:center;
    align-items:center;
    
}

.form{
    display: flex;
    flex-direction: column;
    color: var(--white);
    margin: 10px auto;
    font-size: 20px;
}

input, textarea {
    color: var(--white);
    background-color: var(--grey);
    border: none;
    border-radius: 10px;
    width: 80%;
    padding: 0;
    margin: auto;
}

textarea{
    min-height: 150px;
    color: var(--white);
    background-color: var(--grey);
    border: none;
    border-radius: 10px;
    width: 90%;
    padding: 0;
    margin: auto;
    resize: vertical;
    max-height: 400px;
}

#submit {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    height: 52px;
    width: 150px;
    max-width:90%;
    font-size: 20px;;
    border-radius: 10px;
    text-decoration: none;
    background: var(--grey);
    border: 2px solid var(--blue); 
    color: var(--pink);
    font-weight: 500;
    transition: background 0.2s;
  }
  
  #submit:hover {
    background-color: var(--blue);
   font-weight: 700;
  }

#social-links {
    display: flex;
    padding: 24px 0;
    font-size: 24px;
    justify-content: center;
  }
  #social-links a {
    display: flex;
    padding: 16px;
    transition: background 0.2s;
    align-items: center;
    border-radius: 20%;
    justify-content: center;
    color: var(--blue);
  }
  #social-links a:hover {
    background-color: var(--grey);
  }

footer{
    text-align: center;
    margin: auto;
    justify-content: center;
    font-size: 20px;
    color: var(--yellow);
}

/*Page with work details*/

#workTitle{
    color:var(--orange);
    font-size: 40px;
}

.gameData{
    font-size: 15px;
    margin: auto;
    color: var(--blue);
}

#workVideo, #workVideo2{
    margin: 2vh auto;
    width: 60%;
    height: auto;
    aspect-ratio: 16/9;
}

#gamePage{
    color: var(--orange);
    font-size:20px;
    margin: auto;
    text-decoration: underline;
    letter-spacing: normal;

}

/*Media-queries*/

@media screen and (max-width: 1440px){
    .image-container{
        width: 40%;
       
    }

    .text-logo{
        width:40%;
        text-align:center;
    }

   .navegator{
    width: 60%
   }
}

.cat{
    margin: auto;
    width:300px;
    border-radius: 50%;
}

@media screen and (max-width: 1060px){
    .navegator {
        justify-content: center;
        padding:10px 20px;
        width: 100%;
        min-width: 300px;
        margin: 0;
        list-style-type: none;
        
    }

    #site_title{
        width:100%;
        justify-content: center;
        text-align: center;
        min-width: 300px;
    }

    .image-container{
        width: 90%;
        max-width: 400px;
       
    }

    .form-container{
        width: 70%;
    }

    .text-logo{
        width:100%;
        text-align:center;
    }

    #text-logo{
        width: 80%;
       
    }


}



@media screen and (max-width: 500px){
    h2{
        font-size:30px;
    }

    .navegator{
        padding-top: 0;
        padding-bottom: 5px;
    }

    #site_title{
        font-size: 20px;
       
    }
    .menu {
        font-size: 20px;
        margin:0;
        padding: 5px 10px;
    }
    
    #workTitle{
        font-size: 20px;
    }
    .gameData{
        font-size: 8px;
    }

    #workVideo, #workVideo2{
        width: 90%;
    }
    #gamePage{
       
        font-size:15px;
    
    }

    .licencing li a {
        
        font-size: 18px;
      }

      .form-container{
        width: 100%;
    }

    .formLabel{
        display: flex;
        flex-direction: column;
        color: var(--orange);
        font-size: 20px;
        margin: auto;
        justify-content:center;
        align-items:center;
        
    }
    
    .text-logo{
        width:100%;
        text-align:center;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #text-logo{
        width: 80%;
        padding: 0;
        margin:0;
       
    }

    #bioText{
        font-size: 18px;
    }
}




