body, header, nav, main, footer, p, h1, aside {
    border: 0;
    margin: 0;
    padding: 0; 
}

/* Desktop */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#container {
    margin: 0 auto;
    width: 100%;
}

.grid-overlay {
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    background-position: 0 0, 0 0;
    background-size: calc(100% / 3) calc(100% / 3);
    display: none;
    height: 100vh;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 3;
}

#cover {
    background-color: white;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.no-select {
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.quicksand {
    cursor: default;
    font-family: "Quicksand", sans-serif;
    font-style: normal;
    font-weight: 300;
}

#pic-icon {
    max-width: 140px;
    padding-top: 1.3em;
    transition: all 0.5s;
}

#user {
    padding-top: 17px;
    font-size: 5em;
}

#title {
    font-size: 1.5em;
    font-family: Verdana, Arial;
    padding-right: 30px;
}

a {
    color: blue;
    text-decoration: none;
}

#main-flex-container {
    animation-name: blur;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    background-color: rgb(242, 242, 242);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0px 0px 2px black;
    display: flex;
    filter: blur(25px);
    gap: 25px;
    padding: 0.5em 0em 2em 2em;
    position: relative;  
    margin: 0 auto;
    transition: all 0.5s;
    height: 165px;
    width: 985px;
    z-index: 1;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 0;
}

@keyframes blur {
    100% {filter: blur(0px);
    }
}

/* Tablets */

@media screen and (max-width: 1100px) {
    
    #main-flex-container {
        width: 85vw;
    }

}

/* Phones */

@media screen and (max-width: 653px) {

    #main-flex-container {
        align-items: center;
        flex-direction: column;
        font-size: 80%;
        gap: 0px;
        padding: 0em;
        height: 350px;
        width: 80vw;
    }

    #info-flex {
        padding-left: 2.5em;
    }

}