*{
    font-family: Montserrat;
    color: white;
}
body{
    background-color: #21D4FD;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
    background-size: cover;
    display: flex;
    height: 100vh;
    margin: 0;
    justify-content:center;
    align-items:center;
}
main{
    display: flex;
}
main > div:first-child{
    margin-right: 50px;
}
main > div:last-child{
    margin: 10px;
}
img{
    height: 50vh;
    box-shadow: 1px 1px 12px 2px rgba(0, 0, 0, 0.25);
    display: block;
}
a{
    font-weight: bold;
    text-decoration: none;
}
@media (max-width: 850px) {
    main{
        display: block;
    }
    main > div:first-child{
        margin-right: 0px;
    }
    main > div:last-child{
        margin: 10px;
        text-align: center;
    }
    img{
        margin: auto;
    }
}