*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
body{
    text-align: center;
    
}


.container{
    width: 100%;
    height: 100vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    text-align: center;
    padding: 15px 25px;
    border-radius: 50px;
}
.content h1{
    font-size: 40px;
    color: #fff;
    margin-top: -200px;
}
#word-container{
    font-size: 50px;
    margin-bottom: 20px;
}
#guess-input{
    border-color: white;
    background-color: transparent;
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid #fff;
}
button{
    background-color: transparent;
    font-size: 20px;    
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}
button:hover{
    background-color: #fff;
    color: #000;
}
#message{
    margin-top: 20px;
    font-weight: bold;

}
.content a{
    font-size: 20px;    
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}
.content a:hover{
    background-color: #fff;
    color: #000;
}
.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio:16/9){
    .background-clip{
        width: auto;
        height: 100%;
    }
        
}