:root {
    --primary-color: #3a0da3;
    --secondary-color: #7209b7;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
}

nav {
    background-color: white;
}

h1, h2, h3 {
    font-weight: 600;
}

.primary-color {
    color: var(--primary-color);
}
.secondary-color {
    color: var(--secondary-color);
}

.main-section {
    min-height: 600px;
    background: url(../img/illustration_dino_02.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.main-section .title {
    font-size: 3.5rem;
    text-transform: capitalize;
}

.main-section .paragraph {
    width: 50%;
}

.width-50 {
    width: 50%;
}

.middle-section {
    width: 50%;
}

.last-section {
    min-height: 550px;
    background: url(../img/illustration_willyvegeta.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.last-section-container {
    width: 50%;
}

.space-bottom {
    margin-bottom: 8rem;
}

.highlight {
    font-weight: 600;
}

footer {
    color: #f1f1f1;
    background-color: var(--primary-color);
    font-size: 1.1rem;
}

footer a {
    color: white;
}

footer a:hover {
    color: white;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .last-section {
        background-size: 45%;
    }
}

@media (max-width: 991px) {
    .main-section {
        background-size: 50%;
    }
}

@media (max-width: 575px) {
    .main-section {
        background-size: 65%;
        background-position: bottom right;
    }

    .main-section .title {
        font-size: 2.5rem;
    }

    .main-section .paragraph {
        width: 75%;
    }

    .middle-section {
        width: 100%;
    }

    .last-section {
        min-height: 575px;
        background-position: bottom left;
        background-size: 70%;
    }

    .last-section-container {
        width: 100%;
        margin-bottom: 260px;
    }

    .space-bottom {
        margin-bottom: 6rem;
    }
}

@media (max-width: 280px) {
    .main-section {
        padding-bottom: 95px;
    }

    .main-section .title {
        font-size: 2.25rem;
    }

    .main-section .paragraph {
        width: 100%;
    }

    .last-section-container {
        margin-bottom: 200px;
    }
}