.content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.content > *{
    height: 65vmin;
    width: 65vmin;
    margin: 10vmin;
}

.content > img{
    border-radius: 1vmin;
}

@media (max-width: 1500px){
    .content > *{
        height: 65vmin;
        width: 65vmin;
        margin: 0;
    }
    
    .content > img{
        display: none;
    }    
}

.content > div{
    padding: 8vh 2vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.content h1{
    font-size: 5vmin;
    font-family: 'Nunito', sans-serif;
}

div > h1 + p{
    background-color: lightgrey;
    padding: 1vmin;
    border-radius: 1vmin;
    color: grey;
}

.content input{
    height: 3vh;
    width: 100%;
    border: none;
    border-bottom: 1px solid gray;
    text-indent: 1vmin;
    font-size: 2vmin;
    outline: none;
}

.content button{
    height: 7vh;
    width: 100%;
    color: white;
    background-color: #3A70D1;
    border: none;
    border-radius: 1vmin;
    font-size: 3vmin;
    text-decoration: none;
}

.content button:hover{
    background-color: orange;
    cursor: pointer;
    transition: 0.2s 0.1s ease-in;
}
