@import url('https://fonts.googleapis.com/css2?family=Martel:wght@700&display=swap');

/* Color palette:
#199470
#73e88c
#87d399
#114a5e
#f1e8d1
#dccaa0

Font sizes:
    1.2rem - header
    1.5rem - paragraphs
    1rem - footer
    1rem - small text
*/

* {
    margin: 0;
    padding: 0;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 300;
}

p, li {
    font-size: 1.2rem;
}

form p {
    font-size: 1rem;
}

.small-text {
    font-size: 1rem;
}

header a {
    color: black;
    text-decoration: none;
    max-width: max-content;
}

header a:hover {
    color: black;
}

.thick-line {
    border-top: 3px solid black;
}

.thin-line-top {
    border-top: 1px solid black;
}

/* HEADER */
header {
    min-height: 100px;
}
nav {
    font-size: 1.2rem;
    max-height: max-content;
}

nav a {
    color: #114a5e;
    font-weight: 900;
    text-decoration: none;
    font-family: "brandon-grotesque", sans-serif;
    transition: 0.2s;
    font-size: 1rem;
}

nav a:hover {
    color: rgb(176, 176, 176);
    text-decoration: none;
}
.chat-btn {
    background-color: #114a5e;
    color: white;
    border-radius: 50vw;
}

.chat-btn p {
    font-weight: 900;
    font-size: 1.2rem;
    font-family: "brandon-grotesque", sans-serif;
}

h1, h2, header p, h3, footer .logo {
    font-family: 'Martel', serif;
}

/* HERO */
h1 {
    font-size: 2.3rem;
}

/* FORM */
form {
    border-radius: 30px;
    min-height: 400px;
    border: #114a5e solid 3px;
}

form .btn {
    min-width: 100%;
    background-color: #114a5e;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50vw;
}

/* FOOTER */
footer p {
    font-size: 1rem;
}

footer li a {
    color: black;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
}

footer li a:hover {
    color: rgb(176, 176, 176);
}

@media screen and (max-width: 768px) {
    .logo-items {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    main {
        min-height: 110vh;
    }

    section {
        min-height: 110vh;
    }

    h1 {
        font-size: 4rem;
    }
    .thin-line-right {
        border-right: 1px solid black;
    }
}