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

/* ROOT */
:root {
    --primary: #ffffff;
    --accent: #ff4400;
    --h1-bar: #615793;
    --black: #000000;
    --footer-bar: rgba(255, 255, 255, 0.7);
}



/* GLOBAL */
html {
    font-family: Calibri, sans-serif;
    font-size: 20px;
    color: var(--primary);
}

body {
    background-image: url(img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: row-reverse;
    
    height: 100vh;
    width: 100vw;

    overflow: hidden;
}
.row {
    width: 50vw;
    height: 100%;
}



/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta {
    text-decoration: none;
    color: var(--accent);
    background-color: var(--primary);

    margin: 10px;
    padding: 10px 30px;
    border-radius: 100px;

    cursor: pointer;

    transition: transform 0.3s cubic-bezier(.45,.11,.32,1.55);
}

.cta:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.03) rotate(1deg);
}

/* CONTENT */
.content {
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 0.7;
}

.h1-container {
    background-color: var(--h1-bar);
    text-align: center;

    width: 100%;
    padding: 20px 0;

    margin: 130px;

    text-transform: uppercase;
}

/* SECTION */
section {
    width: 80%;
}

h2 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

ul {
    padding-left: 80px;
}

/* FOOTER */
footer {
    height: 50px;
    width: 100%;

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--footer-bar);
    color: var(--black);
}

/* RESPONSIVE */
@media (max-width: 1023px) {
    .container {
        flex-direction: column;
        overflow-y: visible;
    }
    .row {
        width: 100%;
    }
    .h1-container {
        margin-top: 0;
    }
    footer {
        margin-top: 80px;
    }
}
@media (max-width: 767px) {
    .hero-img {
        display: none;
    }
    ul {
        padding-left: 0;
    }
}