:root {
    --primary-color: #cc0066;
    --primary-color-accent: #FF6699;
    --secondary-color: #ffffff;
    --secondary-color-accent: #ffffff90;
    --text-color: #2b2b2b;
    --navbar-width: 100%;
    --content-width: 100%;
    --content-image-width: 40vw;
}

html {
    color: var(--text-color);
    min-height: 100vh;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    min-height: 10vh;
    display: flex;
    justify-content: center;
    background-color: var(--primary-color-accent);
    border-bottom: 1vh solid var(--primary-color);
}

.navbar {
    width: var(--navbar-width);
    padding-left: 1rem!important;
    padding-right: 1rem!important;
}

.content-wrapper {
    min-height: 70vh;
    display: flex;
    justify-content: center;
}

.content {
    width: var(--content-width);
}

.content-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.content-images div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-image {
    width: var(--content-image-width);
    margin: .5rem;
}

.footer-wrapper {
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top: 1vh solid var(--primary-color);
}

.footer {
    width: var(--navbar-width);
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    :root {
        --content-width: 90%;
        --content-image-width: 35vw;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    :root {
        --content-width: 80%;
        --content-image-width: 25vw;
    }
    
    .content-images {
        flex-direction: row;
        align-items: normal;
        flex-wrap: nowrap;
    }

    .content-image {
        margin: 0;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    :root {
        --navbar-width: 70%;
        --content-width: 70%;
        --content-image-width: 20vw;
    }

    .navbar {
        padding-left: 0!important;
        padding-right: 0!important;
    }

    .header {
        display: flex;
        justify-content: center;
    }

    .navbar-collapse {
        justify-content: end;
    }
    
    .nav-item {
        margin: 0 10px;
        border: rgba(0, 0, 0, 0) 2px solid;
        border-radius: 10px;
        transition: 0.5s ease;
    }

    .nav-item:hover {
        border-color: var(--secondary-color);
        border-radius: 50px;
    }

    .nav-item.active {
        border-bottom: 1px solid white;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    :root {
        --navbar-width: 60%;
        --content-width: 60%;
        --content-image-width: 15vw;
    }   
}