@charset "UTF-8";

.unlock-regular {
  font-family: "Unlock", serif;
  font-weight: 400;
  font-style: normal;
}
.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.anton-sc-regular {
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  padding: 0;
  margin: 0;
}

header {
  margin: 0;
  padding: 10px 0px 10px 0px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 10% 90%;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

header > div > i {
  color: red;
}

header > div > h1 {
  color: black;
  margin: 0;
  justify-content: center;
  align-self: center;
}

hr {
  border: 1px solid red;
}
main {
  margin: 0;
}

main > h1,
h2 {
  text-align: center;
  font-family: "Unlock", serif;
  background-image: linear-gradient(to right, red, white);
}

h1#st{
    animation: esq 0.75s ease-out;
}

@keyframes esq {

0%{
    transform: translateX(-170px);
}

}

h1#mu{
    animation: dir 0.75s ease-out;
     background-image: linear-gradient(to right, white, red);
    
}

@keyframes dir {
    0%{
    transform: translateX(170px);
}

    
}

.principal {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto auto;
  align-items: center;
  justify-items: center;
  justify-content: space-evenly;
}

.produto {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-items: center;
  grid-template-rows: 80% 20%;
  width: 150px;
  height: 150px;
  border-radius: 0px 20px 0px 20px;
  border: 2px solid rgba(255, 0, 0, 0.288);
  margin-bottom: 20px;
  font-family: "Anton SC", sans-serif;
  font-size: 20px;
  box-shadow: 4px 3px 4px 0px rgb(0, 0, 0);
  transition: 1s;
  

  
}
.left{
  transform: translateX(-100%);
}

.rigth{
  transform: translateX(100%);
}

.show{
  transform: translateX(0);
  opacity: 1;
  
}




.produto:hover {
  transform: scale(1.07);
  background-color: rgba(255, 0, 0, 0.284);
}

img#produto {
  width: 100%;
  height: 100%;
}

footer {
  text-align: center;
  background-color: rgb(255, 0, 0);
  margin-top: 20px;
  font-size: 17px;
  padding: 10px;
}

footer > p {
  margin-top: 5px;
  margin-bottom: 5px;
}

/*   
div#netflix{
    animation: netflix 0.75s ease-out;
}

div#netflix:hover{
     background-color: red;
}


@keyframes netflix {
  0% {
    transform: translateX(-170px) scale(70%);
    opacity: 0;

  }
  50%{
    opacity: 0.5;
    background-color: red;
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



div#prime{
    animation: prime 0.75s ease-out;
}

div#prime:hover{
     background-color: rgb(27, 117, 202);
}


@keyframes prime {
  0% {
    transform: translateX(170px) scale(70%);
    opacity: 0;

  }
  50%{
    opacity: 0.5;
    background-color: rgb(27, 117, 202);
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


div#disneyplus{
    animation: disneyplus 0.75s ease-out;
}

div#disneyplus:hover{
    background-color: rgb(15, 31, 121);
}

@keyframes disneyplus {
  0% {
    transform: translateX(-170px) scale(70%);
    opacity: 0;

  }
  50%{
    opacity: 0.5;
    background-color: rgb(15, 31, 121);
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



div#spotify{
    animation: spotify 0.75s ease-out;
}

div#spotify:hover{
    background-color: rgb(12, 200, 31);
}

@keyframes spotify {
  0% {
    transform: translateX(-170px) scale(70%);
    opacity: 0;

  }
  50%{
    opacity: 0.5;
    background-color: rgb(12, 200, 31);
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


div#applemusic{
    animation: applemusic 0.75s ease-out;
}

div#applemusic:hover{
     background-color: rgb(221, 16, 53);
}

@keyframes applemusic {
  0% {
    transform: translateX(200px) scale(70%);
    opacity: 0;

  }
  50%{
    opacity: 0.5;
    background-color: rgb(221, 16, 53);
  }
  
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
*/
i#btn{
  position: fixed;
  z-index: 2;
}

div#menu{
  background-color: rgb(247, 247, 247);
  border: 2px red solid;
  height: 100vh;
  width: 50%;
  transform: translateX(-110%);
  border-radius: 0px;
  position: fixed;
  z-index: 1;
  transition: 1s;
  animation: ease-out;
  
}

#menu.show{
  transform: translateX(0);
}
ul{
  list-style: none;
  color:red ;
  font-size: 20px;
  margin-top: 40px;
  padding: 20px;
}

ul > a{ 
  margin-top: 20px;
  text-decoration: none;
  margin: 50px;
  color: red;

}

select {
  background-color:transparent;
  width: 90px;
  border-radius: 20px;
  border: none;
}


#top{
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: fixed;
  top: 90%;
  right: 10px;
  background-color: red;
  color: white;
  width: 50px;
  height: 50px;
}
