:root {
    --dark: #1E1E1E;
    --light: #FFFFFF;
    --purple: #C792EA;
    --orange: #FFB454;
    --green: #C3E886;
    --gray: #A3A3A3;
    --blue: #88DDFF;
    --red: #F07178;
    --heading-size-1: 3rem;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--dark);
    color: var(--light);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    color: white;
}

.nav .logo-img {
    width: 200px;
}

.hero {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
}

.hero h1 {
    max-width: 680px;
    text-align: center;
}

.purple {
    color: var(--purple);
}

.orange {
    color: var(--orange);
}

h1 {
    font-size: var(--heading-size-1);
    margin-bottom: 0;
    font-weight: bold;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
}

.hero .buttons {
    display: flex;
    gap: 12px;
}

.button {
    background-color: var(--purple);
    color: var(--light);
    padding: 0.55rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
    text-shadow: 0 0 8px rgba(0,0,0,0.75);
}

.button:hover, .button.orange:hover {
    background-color: var(--green);
}

.button.orange {
    background-color: var(--orange);
}

a {
    /* reset */
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 768px) {

    .nav img {
        width: 160px;
    }

    .nav :nth-child(2) img {
        width: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0 2rem;
    }
}