*{
    margin: 0;
    padding: px;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}

body{
    font-family: "Sour Gummy", sans-serif;
   
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

#panel{
    background-color: bisque;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    position: absolute;
    margin: 0 auto;
    align-content: center;
    transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 10;
}

.slide-up{
    transform: translateY(-100vh);
}

.screenshots{
    width: 80%
}

#btn{
    background-color: aqua;
    padding:10px 70px;
    border: none;
    border-radius: 10px;
    box-shadow: 12px 12px 20px gray;
    margin-bottom: 200px;
    font-size: 2em;
    cursor: pointer;
    transition: all 0.2s linear;
}

#btn:hover{
    background-color: aquamarine;
    rotate: 2deg;
}

