:root {
    font-family: Lato;
    color: black;
    font-size: calc(.8rem + .2vw);
}

::selection {
    background-color: #571410;
    color: #F8F3F3;
}

html,
body {
    margin: 0;
    background: #222;
}

body {
    background-image: url('content/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 0 0 0 50vw;
    min-height: 100vh;
}

@media screen and (max-width: 1200px) {
    body {
        padding: 0 0 0 40vw;
    }
}

@media screen and (max-width: 840px) {
    body {
        padding: 0 2vw 0 2vw;
    }
}

@media screen and (max-width: 767px) {
    body {
        background-position: 80%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    line-height: 1.5em;
}

a {
    text-decoration: none;
    color: black;
}

main {
    text-align: center;
    padding: 0vh;
    max-width: 60rem;
    width: 95%;
    display: flex;
    flex-direction: column;
    margin-bottom:1rem;
}

@media screen and (max-width: 1200px) {
    main {
        width: 100%;
    }
}

.title-area {
    font-size: calc(1rem + 1.5vw);
    padding: 1rem 2rem;
    text-align: left;
    border-left: .1em solid black;
    margin-top:1rem;
}

.title-area h1 {
    font-size: 1em;
}

.title-area p {
    font-size: .5em;
    font-weight: bold;
}

h1 span {
    font-size: .5rem;
}

h2 {
    font-size: 1.2em;
}

.description {
    background: white;
    color: black;
    text-align: left;
    font-weight: 500;
    padding: 1em;
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
    box-shadow: .4rem .4rem 1rem 0rem rgba(0, 0, 0, 0.5);
    margin-top:.5rem;
}

.description h2 {
    font-weight: 900;
}

.button {
    max-width: max-content;
    background: #571410;
    color: white;
    font-weight: bold;
    padding: .5em .8em;
    margin-top: .5em;
    align-self: flex-end;
}

.bottom-bar {
    margin: .5rem 0 0;
    gap: 1.5rem;
    background:white;
    box-shadow: .4rem .4rem 1rem 0rem rgba(0, 0, 0, 0.5);
    padding: 1em 1em;
    max-width: max-content;
    align-self: center;
}

.logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5vw;
}

.logos img {
    max-height: calc(1vw + 4rem);
    height: auto;
}

footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    position:absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 460px) {
    footer {
        position: relative;
        align-self: center;
    }
}

footer a {
    color: white;
    transition: .25s;
}

footer a:hover {
    filter: opacity(50%);
}