@font-face {
    font-family: "Source Sans Pro";
    src: url("../assets/fonts/SourceSansPro-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../assets/fonts/SourceSansPro-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Source Sans Pro";
    src: url("../assets/fonts/SourceSansPro-It.otf") format("opentype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Atkinson Hyperlegible";
    src: url("../assets/fonts/Atkinson-Hyperlegible-Regular-102.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-bg: #111923;
    --color: #fff;
    --color-accent: #1e6bf0;
    --color-primary: #078274;
    --color-secundary: #029996;
    --color-dark: #0c1212;
}

body {
    color: var(--color);
    background-color: var(--color-bg);
    line-height: 1.6;
    max-width: 100vw;
    font-family: "Source Sans Pro", sans-serif;
}

a {
    color: var(--color-secundary);
    text-decoration: none;
}

h2 {
    color: var(--color-primary);
}

li {
    margin: 15px 35px;
}

li::marker {
    color: var(--color-secundary);
}

p {
    padding: 10px 0;
}

.header {
    background-color: var(--color-dark);
    height: 20rem;
    display: flex;
    justify-content: space-between;
    padding: 4rem;
    flex-direction: column;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
}

.title-container {
    margin: 0 auto;
    text-align: center;
}

.main-container {
    padding: 1rem;
}

.container {
    border: 1px #213145 solid;
    border-radius: 10px;
    background-color: var(--color-dark);
    padding: 20px;
    margin-bottom: 30px;
}

.fungi-img {
    height: 200px;
    display: flex;
    margin: 20px auto;
    filter: drop-shadow(0 0 7px rgba(7, 130, 116, 0.7)) brightness(70%);
}

.glifo {
    transform: translateY(7px);
    margin-right: 7px;
    margin-top: 50px;
}

.separator {
    width: 100%;
    border: 1px #213145 solid;
    margin-bottom: 30px;
}

.table {
    display: flex;
    justify-content: center;
    margin: 15px auto;
    border: 2px #213145 solid;
    max-width: 470px;
    border-radius: 7px;
    position: relative;
}

.table-column {
    text-align: center;
    width: 100%;
}

.table-column h3,
.table-column p {
    border: 1px #213145 solid;
    padding: 10px;
    margin: auto 0;
}

.table-column h3 {
    background-color: var(--color-bg);
}

.table-column p {
    padding: 5px 0;
    border-bottom: none;
    height: 73px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.delivery-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 15px;
}

footer {
    height: auto;
    background-color: var(--color-dark);
}

.footer-card-container {
    display: flex;
    flex-direction: column;
    padding: 20px 10vw;
}

.footer-card {
    border-bottom: 1px solid var(--color-primary);
    padding: 5px;
    width: 100%;
}

.anartist-footer-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#quote {
    font-size: small;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#quote p {
    margin-left: auto;
    margin-top: 10px;
}

.footer-banner {
    width: auto;
    height: 150px;
    margin: 0 auto;
    display: flex;
}

.attribution {
    text-align: center;
    color: var(--color-primary);
    padding-bottom: 20px;
}

/*
 *     ╭───────────────────────────────────────────────────────────────────╮
 *     │                           Media queries                           │
 *     ╰───────────────────────────────────────────────────────────────────╯
*/
@media (min-width: 768px) {
    li {
        margin: 15px 70px;
    }

    .resposive {
        padding: 0 10vw;
    }

    .header {
        flex-direction: row;
        height: 12rem;
    }

    .title-container {
        transform: translateX(-60px);
    }

    .delivery-mail {
        margin: 30px;
    }

    .footer-card {
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    .resposive {
        padding: 0 20vw;
    }

    .footer-card-container {
        padding: 20px 50px;
        flex-direction: row;
    }
}
