:root {
    --primary-color: #134266;
    --secondary-color: #fce172;
    --accent-color: #78c5d7;
    --backround-color: #e1fbff;
    --primary-color-75-opasity: #134266C0;
    --button-box-width: 100px;
}

body {
    background-color: var(--backround-color);
    font-family: 'Times New Roman', Times, serif;
    font-size: 22px;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

header {
    background-color: var(--primary-color-75-opasity);
    display: grid;
    grid-template-columns: 150px auto;
    grid-template-rows: 80px;
}

header a section {
    height: 100%;
    width: 100%;
}

#logo_link {
    grid-row: 1/2;
    grid-column: 1/2;

}

header nav {
    grid-row: 1/2;
    grid-column: 2/3;
    display: grid;
    grid-template-columns: auto 120px auto 120px auto 120px auto 120px auto;
    grid-template-rows: 100%;
}

.home-button {
    grid-row: 1/2;
    grid-column: 2/3;
}

.rivers-button {
    grid-row: 1/2;
    grid-column: 4/5;
}

.plan-button {
    grid-row: 1/2;
    grid-column: 6/7;
}

.contact-button {
    grid-row: 1/2;
    grid-column: 8/9;
}

header nav a {
    text-align: center;
    text-decoration: none;
    color: var(--secondary-color);
    width: 100%;

}

header nav a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.logo {
    text-align: center;
    height: 100%;
}

footer {
    background-color: var(--primary-color);
    padding: 25px 50px;
    margin-top: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer p a {
    color: black;
    text-decoration: none;
}

footer h3 {
    color: var(--backround-color);
}

footer .socal-logo {
    color: var(--secondary-color);
    text-decoration: none;
}

footer .socal-logo:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

footer p {
    font-size: 1.2em;
}

footer .socal img {
    padding-top: 15px;
}

.social {
    display: grid;
    grid-template-columns: 30px 30px 30px;
    gap: 2px;
}

.socal-logo-box {
    width: 30px;
    aspect-ratio: 1/1;
}

.socal-logo {
    width: 30px;
}



#reddit {
    grid-column: 1/2;
}

#shard {
    grid-column: 2/3;
}

#github {
    grid-column: 3/4;
}

@media screen and (max-width: 900px) {
    footer {
        margin-top: 25px;
    }
}