*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
div{
    position: relative;
    padding: 30px;
    border-radius:  30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #0000001e;
}
button{
    padding: 20px;
    border-radius: 10px;
    border: none;
    background-color: #00000025;
    color: rgba(255, 255, 255, 0.541);
    font-weight: bolder;
    font-size: 200%;
}
button:hover , h1:hover, img:hover{
    scale: 1.1;
    transition-duration: 500ms;
}
h1{
    color: rgba(255, 255, 255, 0.658);
    background-color: #00000025;
    padding: 15px;
    border-radius: 15px;
    font-size: 150%;
}
img{
    width: 150px;
}