body {
    padding: 0;
    margin: 0;
    height: 100vh;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

h1, h2, h3, h4 {
    font-family: 'Times New Roman', Times, serif;
}

.logo {
    width: 90px;
    margin-left: 5vw;
}

main {
    display: flex;
    flex-direction: column;
    padding: 5vh 5vw;
}


.col-1, .col-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.col-1 > img {
    width: 300px;
    max-width: 500px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.col-1 > h3 {
    margin-top: 3px;
}

.col-2 > h1 {
    font-size: 2em;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.buttons > a {
    text-decoration: none;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    padding: 4px 0;
    width: 100px;
}

.buttons > a:hover {
    transform: scale(1.05);
}
.buttons > a:nth-child(1) {
    box-shadow: 2px 2px 5px rgb(151, 150, 150);
}
.buttons > a:nth-child(2) {
    color: white;
    border: 1px solid black;
    background-color: black;
    box-shadow: inset 1px 1px 4px 0 rgba(243, 234, 234, 0.5), 2px 2px 5px rgb(151, 150, 150);
}

footer {
    font-size: 0.7em;
    font-weight: 800;
    text-align: center;
    padding-bottom: 10px;
}


@media (min-width: 1024px) {
    main {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10vw;
    }

    .col-1 > img {
        
        width: 400px;
    }

}