
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body{
    background-image: url('sushi.jpg');
    background-color: blanchedalmond;
    background-repeat: no-repeat center center fixed;
    background-size: cover;
    height:100vh;
}

.intro{
    font-family: 'Pacifico', cursive;
    font-size: 20px;
}

.end{
  
   font-family: 'Pacifico', cursive;
   font-size: 35px;
   color:darkred;

}

.end p{
    text-align: center;
}

.container{
    margin-top: 10px;
    position:relative;
   
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    gap:10px 10px;    
}

.item{
    border-radius:20px;
    opacity:0.9;
    width:150px;
    height:150px;
    background-color:turquoise;
    color:white;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.image{
    width:60%;
}

#popup{
    font-family: 'Pacifico', cursive;
    opacity:0.8;
    text-align: center;
    font-size: 20px;
    display:none;
    position:fixed;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:450px;
    background-color:red;
    font-size: 20px;
    color:white;
    padding: 20px;

}

/* CSS */
.button-52 {
    z-index: 2;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-52:after {
  content: "";
  background-color: #ffe54c;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}