body,html{
    background-color: rgb(50,50,50);
    width: 100%;
    height: 100%;
    margin: 0;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
}
*{
    font-weight: 200;
}
header{
    position: absolute;
    background-color: rgb(100,100,100);
    width: 100%;
    height: 60px;
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#text1{
    position: absolute;
    top: 90px;
    left: 220px;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 40px;
}
#btn1{
    position: absolute;
    top: 215px;
    left: 160px;
    transform: translate(-50%,-50%);
    color: black;
    width: 180px;
    height: 50px;
    border: none;
    border-radius: 15px;
    background-color: rgb(255, 251, 0);
    font-size: 18px;
    filter: drop-shadow(0 0 10px rgb(252, 185, 0));
    transition: background-color 0.5s ease,
    filter 0.5s ease,
    transform 0.5s ease;
}
#btn1:hover{
    transform: translate(-50%,-100%);
    filter: drop-shadow(0 10px 20px rgb(252, 185, 0));
    background-color: rgb(252, 185, 0);
}
#btn1:active{
    transform: translate(-50%,-90%);
    filter: drop-shadow(0 0 20px rgb(252, 164, 0));
    background-color: rgb(252, 164, 0);
}
#btn2{
    position: absolute;
    top: 215px;
    left: 400px;
    transform: translate(-50%,-50%);
    color: black;
    width: 250px;
    height: 50px;
    border: none;
    border-radius: 15px;
    background-color: rgb(255, 251, 0);
    font-size: 18px;
    filter: drop-shadow(0 0 10px rgb(255, 251, 0));
    transition: background-color 0.5s ease,
    filter 0.5s ease,
    transform 0.5s ease;
}
#btn2:hover{
    transform: translate(-50%,-100%);
    filter: drop-shadow(0 0 20px rgb(252, 185, 0));
    background-color: rgb(252, 185, 0);
}
#btn2:active{
    transform: translate(-50%,-90%);
    filter: drop-shadow(0 0 20px rgb(252, 164, 0));
    background-color: rgb(252, 164, 0);
}