* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 1.2vw;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 41px;
}

:root {
    --color-bg: #ffffff;
    --color-bg-dark: rgba(93, 93, 125, 0.16);
    --color-text: #9e9eb1;
    --color-text-accent: #5D5D7D;
    --color-text-light: #f5f8fc;
    --color-accent: #9499EA;
}

/* Site Structure */
.site-shell {
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    columns: 2;
    align-items: center;
}

.left-box {
    background-color: var(--color-bg);
    
    display: flex;
    flex-direction: column;
    columns: 1;

    order: 1;
    top: 0;
    left: 0;
    height: 100vh;
    width: 67%; 

    margin-left: 10%;

}

.hero {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;

    height: 100vh;
    max-width: 45vw;
    text-align: left;
}

.right-box {
    background-color: var(--color-bg-dark);

    display: flex;
    flex-direction: column;
    columns: 1;

    order: 2;
    top: 0;
    right: 0;
    height: 100vh;
    width: 33%;
}

.logo {
    position: relative;
    height: 80%;
    width: 100%;
    min-width: 30vh;
    margin-top: 5vh;
    margin-left: -9vw;
}

/* Visuals */
nav {
    padding: 1rem;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--color-accent);
}

nav a:active {
    color: var(--color-text);
    
    opacity: 0.4;
}


.hero-title {
    font-size: 70px;
    color: var(--color-text-accent);
    line-height: 80px;
    max-width: 90%;

    margin-top: 18vh;
}

.hero-text {
    font-size: 1.5rem;
    color: var(--color-text);
    margin: 1.5rem 0;
}


.hero-button {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 4rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: var(--color-accent);
}




