html {
    font-size: 20px;
    /*font stack goes through most commonly installed fonts on devices */
    font-family: Comfortaa, ui-rounded, 'Hiragino Maru Gothic ProN',
    Quicksand, Manjari, 'Arial Rounded MT', 'Arial Rounded MT Bold',
    Calibri, source-sans-pro, sans-serif;
}

body {
        background-image: linear-gradient(#F163D9, #A125CD);
        background-attachment: fixed;
}


@media screen and (max-width: 600px) {
    #top-nav {
            display: flex;
            justify-content: space-around;
            flex-direction: column;
            gap: 5px;
            text-align: center;
            padding: 3%;
            width: 100%;

            a{
                transition: transform 0.2s ease;
                padding: .5rem;
                background-color: #FFFFFE;
                color: black;
                border-radius: 15px;
                text-decoration: none;
                box-shadow: 0 .2rem .5rem rgb(0 0 0/ .2);
            }
        }
        
    #top-nav a:hover{
        transform: scale(1.04);
    }

    #main-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #wrapper {
        background-color: #FFFFFE;
        width: 85%;
        border-radius: 1rem;
        padding-top: .5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 2rem;
    
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        
    }

    #inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        
        padding-top: .5rem;
        padding-bottom: 2rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    #footer {
        display: flex;
        justify-content: center;
        align-items: center;

        a {
            transition: transform 0.2s ease;
            padding: 8px;
            text-decoration: none;
            width: 3.2em;
        }
    }

    #footer a:hover{
        transform: scale(1.04);
    }

    #footer-img {
        fill: #FFFFFE
    }  

    img {
        max-width: 100%;
        height: auto;
        min-width: auto;
    }
}

@media screen and (min-width: 601px) {
#main-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wrapper{
    background-color: #FFFFFE;
    border-radius: 1rem;
    width: 90%;
    max-width: 1300px;
}

#inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: .5rem;
    padding-top: 1rem;
    padding-bottom: .5rem;
    padding-left: 10px;
    padding-right: 10px;
}

img {
    max-width: 100%;
    height: auto;
    min-width: auto;
}

#top-nav{ 
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
    padding: 1rem 1rem 1rem 1rem;
    margin-top: 2rem;
    max-width: 900px;
    width: 100%;

    a{
        transition: transform 0.2s ease;
        flex-grow: 1;
        padding: .5rem;
        vertical-align: center;
        background-color: #FFFFFE;
        color: black;
        border-radius: 15px;
        text-decoration: none;
        box-shadow: 0 .2rem .5rem rgb(0 0 0/ .2);
    }
}

#top-nav a:hover{
    transform: scale(1.04);
}

#footer {
    display: flex;
    justify-content: center;
    align-items: center;

    a {
        transition: transform 0.2s ease;
        padding: 8px;
        text-decoration: none;
        width: 3.2em;
    }
}

#footer a:hover{
    transform: scale(1.04);
}

#footer-img {
    fill: #FFFFFE
}    
}

@media screen and (min-width: 700px) {
    img {
        max-width: 100%;
        height: 400px;
        min-width: fit-content;
    }
}
