.logo-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-top: -1px;
}

body {
    background-image: url('');
    background-color: light-blue;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    font-family: sans-serif;
    text-align: left;
}

@media print {
    html,
    body {
        height: 100vh;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }
}

p {
    font-size: 1.63vw;
    margin-top: 15.5vw;
}

h1 {
    font-size: 2.9vw;
    font-weight: bold;
    margin-top: .8vw;
}

.container {
    height: 90px;
    display: flex;
    margin-top: -20px;
}

.left-half {
    flex: .7;
    height: 90vh;
    padding: 1rem;
    margin-top: .2vw;
}

.right-half {
    flex: 1.2;
    height: 90vh;
    width: 32vw;
    padding: 1rem;
    margin-top: 0vw;
}

.btn {
    color: white;
    font-size: 1.75vw;
    background-color: #3398FF;
    border-radius: 5px;
    border: none;
    margin-top: -10px;
}

img {
    height: 38vw;
    width: 32vw;
}

@media only screen and (max-width: 768px) {
    .container {
        height: 30px;
        display: flex;
        margin-top: 2px;
    }
    img {
        height: 46vw;
        width: 35vw;
    }
    p {
        font-size: 2.3vw;
        margin-top: 7.9vw;
    }
    body {
        background-color: light-blue;
    }
    .left-half {
        height: 25vh;
        flex: 0.1;
        margin-right: -18px;
    }
    .right-half {
        flex: 3.2;
        height: 25vh;
    }
    .btn {
        margin-top: -5vw;
    }
    h1 {
        font-size: 3.8vw;
        margin-top: 2vw;
    }
}
