/* CORE FRAMEWORKS */
body {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    margin: 0;
    box-sizing: content-box;
}

.text-center {
    text-align: center;
}

section {
    display: flex;
}

.container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-around;
    text-align: center;
}

#one h1 {
    margin: 0;
}

.flex-item {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    width:25%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}


#one {
    background: url('../img/img6.webp');
    background-size: cover;
    max-width: 100vw;
    min-height: 100vh;
}

section .container {
    padding: 1em;
}

.item-one, .item-two, .item-three, .item-four {
    padding: 1em;
}

.w100 {
    width:80%;
}

h1, p {
    color:white;
}

a, a:visited {
    color:white;
    font-weight: bold;
}

a:hover {
    color:#00FF00;
}

@media only screen and (max-width: 700px) {
    .flex-item {
        width:90%;
    }

    .row {
        flex-direction: column;
    }
}