body {
    background-color: #white;
    color: white;
    font-family: Lato, sans;
    margin: 0;
    height: 100vh;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
 }

@keyframes fadeInAnimation {
    0% {opacity: 0;}
    100% {opacity: 1;}
    }

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #6e7b8e;
}

.logo {
    width: calc(33% - 10vw);
    margin: 0 5vw 5vh 5vw;
}

.content {
    width: 66%;
    background-color: #f16224;
    padding: 0 5%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
}

.locations {
    display: flex;
    flex-direction: row;
}

.column {
    flex: 1;
    padding: 0 2% 0 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.bottom {
    position: absolute;
    bottom: 2rem;
    left: 35.5%;
    padding: 0.4rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 3vw, 4rem);
    font-style: normal;
    font-weight: 300;
    margin-block-start: ;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .logo {
        height: 8vh;
        justify-content: left;
        align-items: left;
        width: 50%;
        margin: 15% 0 15% 10%;
    }


    h1 {
        font-size: 2rem;
    }

    .locations {
        flex-direction: column;
        margin-top: 2rem;
    }

    .column {
        margin-bottom: 1rem;
        padding: 0;

    }

    .content {
        justify-content: unset;
        width: 100%;
    }

    .content-inner {
        margin: 0 20% 0 5%;
    }

    .bottom {
        position: relative;
        bottom: 0;
        left: 5%;
        padding: 2rem 0 0 0;

    }
}