html,body{
    padding: 0;
    margin: 0;
    height: 100%;
}
#page{
    height: 100%;
    background-color: rgb(240,240,241);
    background-image: url(../images/4692.jpg);
    background-repeat: none;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content{
    background: rgba(240,240,241,0.8);
    padding: clamp(10px, 5vw, 25px);
    border-radius: 5%;
}
.content img{
        width: clamp(280px, 75vw, 300px);
        height: clamp(280px, 75vw, 300px);
}
