body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Asap', sans-serif;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px #00000044;
    overflow-x: hidden;
    background-color: #1c1c1c;
}

h1 {
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
    font-size: 50px;
}

button {
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    height: 45px;
    background-color: #ee4599;
    border-radius: 10px;
    border: 3px white solid;
    color: white;
    font-family: 'Titan One', sans-serif;
    font-weight: normal;
    font-size: 1.25em;
    text-indent: 2px;
    transition: all 0.2s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-shadow: 2px 2px #00000044;
    text-align: center;
    cursor: pointer;
}

button:hover {
    transform: scale(1.2);
}

a {
    color: white;
}

nav {
    width: 100%;
    height: 7.5vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: flex;
    flex-direction: row;
    z-index: 100;
}

nav .nav-left {
    height: 100%;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

nav .nav-left img {
    height: 75%;
}

nav .nav-right {
    height: 100%;
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

section {
    width: 100%;
    height: 75vh;
    background-color: black;
    position: relative;
    z-index: 2;
    border-bottom: 5px white solid;
}

section h1 {
    margin-top: 0;
    margin-bottom: 20px;
}

section img {
    width: 65%;
}

section p:not(.fineprint) {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

section .section-content {
    width: 75vw;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

section .section-left,.section-right {
    display: flex;
    justify-content: center;
    width: 50%;
}

section .section-right {
    flex-direction: column;
}

.first-section {
    background: rgba(85, 64, 154, 1);
    background: linear-gradient(180deg, rgba(85, 64, 154, 1) 0%, rgba(34, 146, 207, 1) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
}


section .pattern {
    background-image: url(../media/ss1pattern.png);
    background-repeat: repeat;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.temple-section {
    background: #2A8E94;
    background: linear-gradient(180deg, rgba(42, 142, 148, 1) 0%, rgba(197, 199, 113, 1) 100%);
}

section .frame-image {
    width: 30vw;
    border-radius: 10px;
    rotate: -5deg;
    border: 3px white solid;
}

section .fineprint {
    margin-top: 20px;
    margin-bottom: 0;
}

.pattern-crowns {
    background-image: url(../media/crownspattern.png) !important;
}

.shop-section {
    background-image: url(../media/bluegback.png);
    background-size: cover;
    background-position: center center;
}

.challenges-section {
    background-image: url(../media/purplegback.png);
    background-size: cover;
    background-position: center center;
}

footer {
    background-color: #1c1c1c;
    width: 100%;
    height: auto;
}

footer p {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (max-width: 800px) {
    section .section-left {
        display: none;
    }

    section .section-content {
        width: 90%;
    }

    section .section-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    nav .nav-right {
        position: absolute;
        right: 20px;
    }
}