html {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
    color: #071803;
    background-color: #97a379;
    text-align: center;
    line-height: 1.5rem;
}

footer {
    display: flex;
    align-self: flex-end;
    align-items: center;
    justify-content: center;
    background-color: #799164;
    height: 50px;
    border: 5px solid #70865c;
    border-radius: 15px;
    padding: 10px;
    margin: 5px;
    font-size: 0.5rem;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    background-color: #8DA379;
    align-items: center;
    justify-items: center;
    border: 5px solid #839b6d;
    border-radius: 15px;
    padding: 10px;
    margin: 5px;
    gap: 10px;
}

.logo {
    width: auto;
    height: auto;
    grid-column: 1 / span 3;
}

.logo img {
    width: 80%;
    height: auto;
    padding: 10px;
}

.devs {
    justify-content: start;
    grid-row: 2 / span 3;
    height: 100%;
    width: 100%;
    border: 3px solid #839b6d;
    border-radius: 15px;
    grid-column: 1 / span 1;
    font-size: 1.25rem;
    overflow: auto;
    scrollbar-color: #799164;
}

.intro {
    justify-content: start;
    grid-row: 2 / span 3;
    height: 100%;
    width: 100%;
    border: 3px solid #839b6d;
    border-radius: 15px;
    grid-column: 2 / span 1;
    font-size: 1.25rem;
}

.socials {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    justify-content: center;
    grid-row: 2 / span 3;
    height: 100%;
    width: 100%;
    border: 3px solid #839b6d;
    border-radius: 15px;
    grid-column: 3 / span 1;
    font-size: 1.25rem;
    align-items: center;
    justify-items: center;
}

.socials #fb {
    grid-row: 1 / span 1;
    justify-content: center;
    background-color: #799164;
    height: 100%;
    width: 100%;
    border: 3px solid #70865c;
    border-radius: 15px;
    color: #071803;
    text-decoration: none;
    box-shadow: 2px 2px 2px#071803;
    padding: 1rem 1.5rem;
}

.socials #tbr {
    grid-row: 2 / span 1;
    justify-content: center;
    background-color: #799164;
    height: 100%;
    width: 100%;
    border: 3px solid #70865c;
    border-radius: 15px;
    color: #071803;
    text-decoration: none;
    box-shadow: 2px 2px 2px#071803;
    padding: 1rem 1.5rem;
}

.socials #dsc {
    grid-row: 3 / span 1;
    justify-content: center;
    background-color: #799164;
    height: 100%;
    width: 100%;
    border: 3px solid #70865c;
    border-radius: 15px;
    color: #071803;
    text-decoration: none;
    box-shadow: 2px 2px 2px#071803;
    padding: 1rem 1.5rem;
}

.socials #ptrn {
    grid-row: 3 / span 1;
    justify-content: center;
    background-color: #799164;
    height: 100%;
    width: 100%;
    border: 3px solid #70865c;
    border-radius: 15px;
    color: #071803;
    text-decoration: none;
    box-shadow: 2px 2px 2px#071803;
    padding: 1rem 1.5rem;
}

h1 {
    display: flex;
    align-items: center;
    font-size: 3rem;
    background-color: #799164;
    height: 50px;
    justify-content: center;
    justify-self: center;
    border: 5px solid #70865c;
    border-radius: 15px;
    align-self: center;
    padding: 10px;
    margin: 5px;
}

h4 {
    font-size: 1.85rem;
    font-weight: normal;
    height: auto;
    padding: 1rem;
    line-height: 1.5em;
}

h5 {
    font-size: 1.65rem;
    font-weight: normal;
    height: auto;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 1rem;
}

a {
    color:#071803;
}


/* wtf is this. i'll be back to fix you */
@media only screen and (max-width: 425px) {
    h1 {
        font-size: 2rem;
        overflow: hidden;
    }

    h5 {
        font-size: 1rem;
    }

    .devs {
        overflow: auto;
        font-size: 1rem;
    }

    .intro {
        overflow: auto;
        font-size: 1rem;
    }

    footer {
        height: auto;
        overflow: hidden;
        position: absolute;
        font-size: 0.25rem;
    }

    .socials {
        grid-auto-flow: column;
        overflow: auto;
    }

   .socials #fb,
   .socials #tbr,
   .socials #dsc,
   .socials #ptrn {
        font-size: 1rem;
        overflow: auto;
        padding: 0;
    }

    .container {
        overflow: auto;
    }
}