@import url('https://fonts.googleapis.com/css?family=Mansalva|Quicksand&display=swap');
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    display: block;
    text-align: center;
    margin: 0%;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
}

h1, h2, h3, .navbar {
    font-family: 'Mansalva', cursive;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}

h1, h2, footer {
    text-align: center;
}

p {
    max-width: 80%;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
}

.contact h2 {
    padding-bottom: 15px;
}

.bigger {
    font-size: 1.2rem;
}

/*
.description {
    word-break: break-all;
    white-space: normal;
    padding-left:20px;
}*/

.description {
    width: 210px;
    padding-left: 20px;
}

.main-title {
    font-size: 5rem;
}

.red {
    color: #be4848;
}

.blue {
    color: #639bc9;
}

.yellow {
    color: #eaec69;
}

.navbar-container {
    height: 9vh;
    position: sticky;
    background: #eaec69;
    top: 0;
    width: 100%;
    text-decoration: none;
    z-index: 1;
    padding: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.navbar {
    width: 100vw;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0px;
}

.navbar a {
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
}

.navbar a:hover {
    color: #639bc9;
}

.divisions {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.division1 {
    background-color: #6ecc82;
    color: black;
}

.division2 {
    background-color: #be4848;
}

.division3 {
    background-color: white;
    color: black;
    min-height: 100vh;
}

.division4 {
    background-color: #639bc9;
}

footer {
    background-color: #eaec69;
    color: black;
    padding: 15px;
}

.copyright {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.team {
    padding-top: 5%;
}

.team {
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    text-align: center;
    min-height: 100vh;
    margin-bottom:60px;
}

.members {
    max-width: 250px;
    width: 50%;
    padding: 0.6%;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    vertical-align: top;
    
}

.members a {
    color: black;
}

.members img {
    border-radius: 50%;
    max-width: 70%;
}

.ayub {
    background-color: #be4848;
    color: white;
}

.nikke {
    background-color: #eaec69;
}

.renata {
    background-color: #6ecc82;
}

.jamie {
    background-color: #639bc9;
    color: white;
}

.social-media-icons {
    width: 80%;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-evenly;
    color: black;
    text-decoration: none;
}

.fab {
    color: black;
}

.fab:hover {
    color: #6ecc82;
}

@media screen and (min-width: 320px) {
    .members {
        display: inline-block;
        width: 100%;
    }
    .members img {
        width: 100%;
    }
}

.contact {
    color: black;
}

label {
    font-size: 1.2rem;
}

input {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    width: 40vmax;
    height: 5vh;
    margin: 10px 0;
}

#message {
    font-family: 'Quicksand', sans-serif;
    height: 25vh;
    width: 40vmax;
    font-size: 1.2rem;
    margin-top: 10px;
    padding-top: 10px;
}

.submit {
    width: 20vmax;
    height: 3rem;
    font-size: 1.3rem;
    background-color: white;
    padding: 0px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.submit a {
    text-decoration: none;
    color: black;
}

.submit:active, a:hover {
    color: #6ecc82;
}

form {
    width: 40vmax;
    text-align: left;
}

.scroll-up {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 40%;
    font-size: 20px;
}

.scroll-up:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}