@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*, body {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: medium;
}
body {
    background-color: #ffffffff;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 28px;
}

button {
    background-color: #19447b;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    font-size: large;
}

hr {
    margin: 0;
    border: 1px solid #418aeb;
}

button:hover {
    background-color: #246cc9;
    font: bolder;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.header .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: large;
    font-weight: 600;
}

.header .logo img {
    height: 120px;
}

.grower {
    flex-grow: 1;
}

.footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.footer p {
    padding: 10px;
}


@media (orientation: portrait){
    body {
        padding: 0;
        font-size: small;
    }

    h1 {
        font-size: 22px;
    }

    button {
        padding: 8px;
        font-size: medium;
    }

    .header {
        padding: 0 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .header .logo img {
        height: 80px;
    }

    .footer p {
        padding: 5px;
        font-size: small;
    }
}