*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: white;
}
.showcase{
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px;
    /* background-color: black; */
}

#computer,#phone{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#player{
    z-index: 999;
    height: 20vh;
}

.butcase{
    display: flex;
    position: absolute;
    flex-direction: column;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: aliceblue; */
}

.butup{
    display: flex;
    /* position: relative; */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 53%;
    /* background-color: aquamarine */
}
.butdown{
    position: relative;
    /* width: 100%; */
    height: 47%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
button{
    width: 80%;
    height: 20%;
    border-radius: 8px;
    font-family: 'Klee One', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 0.536);
    background-color: #837e7e91;
    transition: all 0.3s;
}

button:focus{
    outline: none;
}
.start,.scan,.picture{
    box-shadow: 4px 4px 10px #000,
    -4px -4px 10px #353535,
    inset -2px -2px 4px #353535,inset 2px 2px 4px #000;
}
.start:hover,.scan:hover,.picture:hover{
    color: #ffef13;
    cursor: pointer;
    border: 3px solid #ffef13;
}

@media screen and (min-width: 320px) and (max-width: 534px) {
    #phone {
      display: block;
    }
    .butdown{
        left: 25%;
        width: 50%;
    }
    h1{
        font-size: 3.3em;
    }
}

@media screen and (min-width: 535px) and (max-width: 720px) {
    #phone {
      display: block;
    }
    .butdown{
        left: 25%;
        width: 50%;
    }
    h1{
        font-size: 5.5em;
    }
}

@media screen and (min-width: 721px) and (max-width: 1060px) {
    #computer {
        display: block;
      }
  
    .butdown{
        left: 32%;
        width: 36%;
    }
    h1{
        font-size: 7em;
    }
}

@media screen and (min-width: 1061px) {
    #computer {
      display: block;
    }
    .butdown{
        left: 38%;
        width: 24%;
    }
    h1{
        font-size: 10em;
    }
}

.text{
    display: flex;
    flex-direction: row;
    width: 70%;
    height: 70%;
    font-family: 'Yuji Boku', serif;
    align-items: center;
    justify-content: center;
    /* background-color: bisque; */
}

h1{
    margin: 0;
    padding: 0;
    color: white;
    text-shadow: 0 0.1em 20px black,
    0.05em -0.03em 0 black,
    0.05em 0.005em 0 black,
    0em 0.08em 0 black,
    0.05em 0.08em 0 black,
    0px -0.03em 0 black,
    -0.03em -0.03em 0 black,
    -0.03em 0.08em 0 black,
    -0.03em 0 0 black;
}
h1 span:first-child{
    -webkit-animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) ease-in-out infinite;
    animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) ease-in-out infinite;
}
h1 span:last-child{
    -webkit-animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite;
    animation: bopB 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite;
}
@keyframes bop{
    0%{
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    50%,100%{
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes bopB{
    0%{
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    80%,100%{
        -webkit-transform: scale(1) rotateZ(-3deg);
        transform: scale(1) rotateZ(-3deg);
    }
}

.leFadeInTop span {
   animation-name: leFadeInTop;
}
@keyframes leFadeInTop {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
    }
}
  
  