*{
    margin: 0;
    padding: 0;
}
body{
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(130,130,130,1) 51%, rgba(255,255,255,1) 100%);
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
    background-repeat: no-repeat;
    z-index: 0;
}
main{
    margin: 30px 50vh;
    display: flex;
    align-items: center;
    width: 700px;
}
.section1{
    background: rgba(255,255,255,0.2);
    padding: 0 10px 10px 10px;
    border-radius: 8px;
}
h2{
    text-align: center;
}
button{
    height: 100px;
    width: 100px;
    font-size: 40px;
    color: black;
    font-weight: bold;
}
button:hover{
    cursor: pointer;
}

.section2{
    background: rgba(255,255,255,0.2);
    width: 250px;
    height: 400px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0 20px 0;
}
.stats{
    top: 8px;
    border:1px solid white;
    height: 105px;
    border-radius: 8px;
    padding: 8px 20px;
    box-sizing: border-box;
}

button img{
    width: 80%;
}