:root {
    --accent: #fe662a;
    --primary: #2b3138;
    --secondary: #202329;
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-bg: #252932;
}

.light-theme {
    --accent: #fe8c2c;
    --primary: #ffffff;
    --secondary: #eff1f3;
    --text-primary: #0f161d;
    --text-secondary: #a5a8aa;
    --text-bg: #eee;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
}

h3 {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--text-primary);
}

p {
    font-size: 0.7em;
    color: var(--text-secondary);
    max-width: 25em;
    line-height: 21px;

}

header {
    min-height: 100vh;
    background: linear-gradient(90deg,
            var(--secondary) 0%,
            var(--secondary) 50%,
            var(--primary) 50%,
            var(--primary) 100%);
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
}

.header-body {
    min-height: 100vh;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.main-img {
    position: relative;
    margin: 0 auto;
}

.main-img img {
    height: 75vh;
    min-height: 30em;
    position: relative;
    /* right: 113px; */
    z-index: 1;
}

.main-img::before,
.main-img::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.main-img::before {
    width: 8em;
    height: 8em;
    border: 1em var(--accent) solid;
    right: 5em;
    top: 4em;
}

.main-img::after {
    bottom: 0em;
    left: -3em;
    width: 100%;
    height: 3em;
    background: rgba(0, 0, 0, 0.3);
    filter: blur(8px);
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2em 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.brand span {
    color: var(--accent);

}

.toggle {
    font-size: 2em;
    cursor: pointer;
}

.header-body h1 {
    font-size: 3.5em;
    letter-spacing: 2px;
    margin: 2em 0 1em 0;
}

.text,
.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 2em 0;
}

.right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-right {
    margin: 0 0 2em 0;
}

.play-btn {
    border: 1px var(--text-primary) solid;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: var(--text-primary);
}

.play-btn div {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 12px solid var(--accent);
    border-bottom: 6px solid transparent;
}

.links a {
    font-size: 0.8em;
    text-transform: uppercase;
}

@media screen and (max-width: 1000px) {

    .text,
    .right {
        flex-direction: column;
        text-align: center;
    }

    .text>div {
        margin: 2em 0;
    }

    .main-link {
        padding: 0.5em 1em;
        background: var(--accent);
    }

    .background-text {
        display: none;
    }
}

@media screen and (min-width: 1500px) {
    html {
        font-size: 19px;
    }
}

@media screen and (min-width: 1150px) {
    .header-body h1 {
        margin-left: 10vw;
    }

    .text-left,
    .main-link {
        margin-left: 5vw;
    }

    .text-right {
        margin-right: 5vw;
    }
}

@media screen and (min-width:1000px) {
    .main-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .text-right {
        margin: 0 2em 0 0;
    }

    .text-left,
    .text-right,
    .text-left div,
    .text-right div,
    .play-btn,
    .main-link,
    .main-link span {
        position: relative;
    }

    .text-left::before,
    .text-right::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 10em;
        width: 35em;
        z-index: 0;
    }

    .text-left::before {
        background: var(--primary);
        right: 50%;
    }

    .text-right::before {
        background: var(--secondary);
        left: 30%;
    }

    .main-link::before {
        content: '';
        background: var(--accent);
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translateY(-50%);
        height: 2em;
        width: 25em;
        transition: 0.4s;
    }

    .main-link:hover:before {
        right: -1em;
    }

    .background-text {
        margin: 0;
        font-size: 13vw;
        color: var(--text-bg);
        line-height: 0.8em;
        opacity: 0.5;
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 0;
        pointer-events: none;
    }
}