* {
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
}

a {
    color: white;
    text-decoration: none; /* no underline */
  }

body {
    /* background: linear-gradient(180deg, rgba(60,125,192,1) 0%, rgba(238,209,190,1) 40%, rgba(127,93,115,1) 87%, rgba(67,57,104,1) 100%);
    background-size: contain; */
    background-size: 100% 100%;
    background-position: 0px 0px,0px 0px;
    background-image: radial-gradient(84% 72% at 99% 9%, #00FFFF00 0%, #5f81a6 0%, #00FFFF00 71%, #00FFFF00 100%),linear-gradient(0deg, #c39c82 0%, #e3bb90 36%, #d2bdb2 99%, #d2bdb2 100%);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    overflow: hidden;
}

.main-grid-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    grid-template-areas: 
                        'nav'
                        'main'
                        'footer';
}

nav {
    grid-area: nav;
    font-family: "Libre Barcode 39 Text", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    gap: 50px;
    margin-top: 1rem;
}


.main-text {
    grid-area: main;
    place-self: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    padding-top: 5rem;
}

.text-container, .footer-container, .works-text-container {
    width: 70%;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: clamp(1rem, 1.3vw + 1rem, 3rem);
    font-style: normal;
    color: white;
}

.text-container span {
    color: #9E6F3F;
}

footer {
    grid-area: footer;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    font-size: 0.8rem;
    text-align: center;
    gap: 0;
}

#about-text {
    text-align: center;
}

#contact-text {
    text-align: center;
}

span.email > a {
    color: #9E6F3F;
}

span.linkedin {
    color: #0072B1;
}

span.linkedin > a {
    color: #0072B1;
}

span.mastodon {
    color: #6968FF;
}

span.mastodon > a {
    color: #6968FF;
}

span.threads {
    color: #0A0A0A;
}

span.threads > a {
    color: #0A0A0A;
}

@media (max-width: 428px) {
    nav {
        margin-top: 15px;
        font-size: 1.5rem;
        gap: 25px;
    }

    body {
        min-height: 100%
    }

    #works-text {
        text-align: center;
        place-self: center;
    }

    .main-text {
        margin-top: 30px;
    }

    .works-text-container {
        place-self: center;
        align-content: start;
    }

    .about-text {
        font-size: 1rem;
    }

    
}