.heroBanner {
    background-image: url(Images/heroBanner.png);
    background-size: cover;
    background-position: center top;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--colorWhite);
}

.heroBannerText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    font-size: 1.5rem;
    padding: 10px;
    
}

.heroBannerText h1 {
    text-shadow: 3px 5px #000
}

.heroBannerText p {
    text-shadow: 1px 2px #000
}

nav {
    background-color: var(--colorBlack);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid var(--colorWhite);
    padding-top: 30px;
    padding-bottom: 30px;
}

.navContent {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1000px;
}

nav button {
    
    border: 2px solid var(--colorMain01);
    background-color: var(--colorBlack);
    width: 150px;
    font-family: "Poiret One", sans-serif;
    color: var(--colorMain01);
    font-size: 1.5rem;
    font-weight: 600;
}

nav button:hover {
    border: 2px solid var(--colorWhite);
    background-color: var(--colorWhite);
    color: var(--colorMain02);
}

.intro {
    background-color: var(--colorMain02);
    color: var(--colorWhite);
    border-bottom: 1px solid var(--colorBlack);
}

.introText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.intro img {
    width: clamp(300px, 50%, 400px);
}

.introText p {
    margin-bottom: 1rem;
}



.toElsewhere {
    background-color: var(--colorMain01);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.toElsewhereContent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(800px 100% 1400px);
    
}

.toElsewhere img {
    width: 400px;
    
}

.toElsewhere button {
    border: 2px solid var(--colorMain02);
    background-color: var(--colorWhite);
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Kavoon", sans-serif;
    color: var(--colorMain02);
    font-size: 2rem;
    margin-bottom: 15px;
}

.toElsewhere button:hover {
    border: 2px solid var(--colorWhite);
    background-color: var(--colorMain02);
    color: var(--colorWhite);
}

.elsewhereText {
    background-color: var(--colorWhite);
    color: var(--colorBlack);
    width: 430px;
    height: 70%;
    display: flex;
    flex-direction: column;
}

.elsewhereTextContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#commissionsImage {
    border-bottom-left-radius: 30px;
}

#charactersImage {
    border-top-right-radius: 30px;
}

#commissionsText {
    position: relative;
    right: 30px;
    border-top-right-radius: 30px;
    border-top: 5px solid var(--colorMain02);
}

#charactersText {
    position: relative;
    left: 30px;
    border-bottom-left-radius: 30px;
    border-top: 5px solid var(--colorMain02);
}

@media (max-width: 1000px) {

    .toElsewhereContent {
        flex-direction: column;
        width: clamp(300px, 100%, 500px);
        
    }

    #commissionsImage {
    border-bottom-left-radius: 0;
    }

    #charactersImage {
    }

    #commissionsText {
        position: relative;
        right: 0;
        border-top-right-radius: 0;
        border-top: none;
    }

    #charactersText {
        position: relative;
        left: 0;
        border-top: none;
    }

    .toElsewhereContent img {
        width: 100%;
        border-top-right-radius: 30px;
    }

    .elsewhereText {
        width: 100%;
        padding: 0;
        border-bottom-left-radius: 30px;
    }

    .elsewhereTextContent {
        padding: 30px;
    }

    #toCharactersContent {
        display: flex;
        flex-direction: column-reverse;
    }
}