:root {
    --text-color: rgb(7, 16, 17);
    --accent-color: rgb(230,143,147);
    --accent-color-lite: rgb(250, 211, 213);
    --accent-color-dark: rgb(206, 118, 122);
    --accent-color-drkr: rgb(188, 96, 100);
    --page-color: rgb(242,243,217);
}

a {
    text-decoration: none;
}

* {
    font-family: karla;
}

body {
    background-color: white;
    margin: 0;
    overscroll-behavior-y: none;
}

/* Style */
#about-section-right {
    border-radius: 0 25% 25% 0;
}

#about-section-left {
    border-radius: 25% 0 0 25%;
}

.circle-selector {
    background-color: rgba(230,143,147, 0.5);
    border-radius: 100%;
    height: 3rem;
    position: relative;
    text-align: center;
    top: -50%;
    width: 3rem;
}

#links {
    align-items: flex-start;
}

#menu-tab-row {
    width: 50%;
}

.page-header {
    color:black;   
}

.tab-selector {
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    text-align: center;
}

/* Containers  */
.button-box {
    color: black;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background-color: var(--accent-color-lite);
    font-weight: 1000;
    padding: 1rem;
    transition: border-width 0.1s ease
}

.button-box:hover {
    border-width: 2px;
    border-style:dashed;
    background-color: rgb(253, 164, 169);
}

.flex-container-column {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.flex-container-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-container-responsive {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.hero-container {
    background-image: url('images/hero-image-blur.webp');
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.blurred-overlay {
    background-color: rgba(0, 0, 0, 0.232);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.hero-container img {
    height: auto;
    max-width: 700px;
}

.image-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
    width: 100%;
}

.image-container img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    height: auto;
    width: 100%;
}

.image-container iframe {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.main-content {
    align-items: center;
    background-color: var(--page-color);
    display: flex;
    flex-direction: column;
}

.social-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    width: 100%;
}

/* Nav elements */

nav {
    align-items: center;
    background: white;
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    font-size: larger;
    justify-content: center;
    padding: 0;
    top: 7rem;
    width: 100%;
    z-index: 100;
}

nav.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
}

nav a {
    color: var(--text-color);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

nav a:hover {
    background-color: var(--accent-color-lite);
    cursor: pointer;
}


nav img {
    height: auto;
    object-fit: cover;
    width: 1.4rem;
}

p {
    margin: 0;
}

.page-title {
    align-items: center;
    background-color: var(--page-color);
    display: flex;
    flex-direction: column;
    font-size: 72px;
    margin: 0;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 500px) {
    #about-section-right {
        border-radius: 0;
    }
    
    #about-section-left {
        border-radius: 0;
    }

    .flex-container-responsive {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .hero-container img {
        height: auto;
        max-width: 275px;
    }

    #links {
        align-items: center;
    }

    .main-content {
        padding: 0 1rem 1rem 1rem;
    }

    #menu-tab-row {
        width: 100%;
    }
}