:root {
    --width-content: 70%;
    --upcoming-width: calc(var(--width-content));

    --color-text-main: rgb(50, 50 , 50);
    --color-text-sec: #F44174;
    --color-main: rgba(210, 210, 210, 0.75);

    /* Large devices (laptops/desktops, 992px and up) */
    @media only screen and (min-width: 992px) {
        --width-content: 60%;
        header a {
            display: flex;
        }
        #burger-wrapper {
            display: none;
        }
    }
    /* Large devices (laptops/desktops, 992px and up) */
    @media only screen and (min-width: 992px) {
        --width-content: 50%;
        /* --upcoming-width: calc(var(--width-content) / 2); */

        #content-wrapper {
            /* flex-direction: row; */
        }
    }

}

html, body {
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Outfit", sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-main);
}

h1, h2, h3, h4, h5, p {
    margin: 0px;
    padding: 0px;
}

header {
    width: 100%;
    height: 2.5rem;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    z-index: 10000;
}

header a {
    display: none;
    text-decoration: none;
    color: var(--color-text-main);
    font-size: large;
}
header #logo {
    display: flex;
    color: var(--color-text-sec);
    font-size: 2.5rem;
    z-index: 100000000;
}

nav {
    width: calc(var(--width-content) + 6rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s ease-in-out;
    z-index: -1;
}
nav div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

#burger-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
}
#burger-closed, #burger-opened {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.05s ease-in-out;
}
#burger-opened {
    display: none;
}
#burger-closed:hover, #burger-opened:hover {
    scale: 1.1;
}
#burger-menu {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-300vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
#burger-menu a {
    display: flex;
    font-size: 3rem;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: var(--color-text-sec);

}

.clickable {
    transition: all 0.2s ease-in-out;
}

.clickable:hover {
    transform: translateY(4px);
    color: var(--color-text-sec);
}

#image-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#image-wrapper img {
    width: calc(100%);
    height: calc(100vh - 2.5rem);
    margin-top: 2.5rem;
    position: absolute;
    object-fit: cover;
    filter: brightness(0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#content-wrapper {
    width: 100%;
    height: 100%;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}


#image-wrapper .text-wrapper {
    width: calc(var(--width-content));
    max-height: calc(100vh - 22rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    z-index: 99;
    transform: translateX(-100vw);
    transition: all 0.6s ease-in-out;
    background-color: var(--color-main);
    color: var(--color-text-main);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#image-wrapper .text-wrapper h1 {
    font-size: 1.5rem;
}

#image-wrapper .text-wrapper p{
    font-size: 1rem;
}
#image-wrapper .text-wrapper a {
    color: var(--color-text-main);
}
#image-wrapper .text-wrapper::-webkit-scrollbar { 
    display: none;
}

#slide-left, #slide-right {
    all: unset;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(5, 5, 5, 0.7);
    color: rgba(230, 230, 230, 0.9);
    border-radius: 8px;
    font-size: 4rem;
    cursor: pointer;
    top: 50vh;
    z-index: 1000;
    user-select: none;
    transition: all 0.1s ease-in-out;
}
#slide-left:hover, #slide-right:hover {
    background-color: rgba(230, 230, 230, 0.9);
    color: rgba(10, 10, 10, 0.9);
}
#slide-left:active, #slide-right:active {
    background-color: rgba(100, 100, 100, 0.9);
}
#slide-left {
    width: 4rem;
    height: 4rem;
    left: 0;
    transform: translate(30%, -50%);
}
#slide-right {
    width: 4rem;
    height: 4rem;
    right: 0;
    transform: translate(-30%, -50%);
}