html {
    font-size: 16px;
}

body {
    background-color: #60A5FA;
    color: #F9FAFB;
    font-family: Staatlich;
    font-size: 1.2rem;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    margin-block: 0;
}

nav > a, span {
    cursor: pointer;
}

nav > * {
    margin: 0.5rem;
}

* > article > h2 {
    font-size: 2.5rem;
}

section:first-of-type {
    margin-bottom: 2rem;
}

section > * {
    margin-left: 1rem;
    margin-right: 1rem;
}

section:last-of-type {
    margin-bottom: 0;
}

.header_div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.header_nav {
    display: none;
}

.header_span {
    margin-top: 0.2rem;
}

.content_div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.profile_img {
    border-radius: 50%;
    width: 50%;
    height: 50%;
}

.social {
    background-color: #F9FAFB;
    color: #1F2937;
}

.social_div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.social_font {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social_fontBackground {
    background-color: #E5E7EB;
    padding: 1rem;
    border-radius: 50%;
}

.about_article {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about_article > section {
    font-size: 1.8rem;
}

.about_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
    gap: 20px;
}

.shop {
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.mobile_div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
}

.mobile_nav {
    display: flex;
    flex-direction: column;
    font-size: 2.5rem;
    align-items: center;
    margin-top: 3rem;
}

.mobile_close {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer;
}

@media screen and (min-width:768px) {
    .header_span {
        display: none;
    }

    .header_nav {
        display: block;
    }

    .content_div {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        margin-bottom: 5rem;
    }

    .profile_img {
        max-height: 375px;
        max-width: 375px;
    }

    .social_div {
        grid-template-columns: repeat(3, 1fr);
    }
    
}


@font-face {
    font-family: Staatlich;
    src: url('./static/fonts/Staatliches-Regular.ttf');
}

.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }