* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;

    font-family: "Lato", sans-serif;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
     flex: 1;
}

i {
    font-size: 50px;
}

/* Header */

header {
    background-color: #2e294eb3;
    height: 95px;
}

header, a {
    color: #ffd400;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.headerText {
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
}


a:hover {
    color: #f1e9daff; 
}

nav {
    display: flex;
    justify-content: space-around;
    width: 700px;
}


/* Geel programmeertaal stukje */

.webClasses {
    background-color: #ffd400cc;
    color: #d90368;
    padding: 20px;
}

h2 {
    background-color: #d90368cc;
    border: 1px solid #d90368cc;
    border-radius: 15px;
    padding: 20px;
    width: 120px;
    margin: 0 auto; 
    color: #ffd400;
    font-size: 20px;
    text-align: center;
}

.webLanguages {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.languages {
    display: inline;
    margin: 30px 50px 50px 50px;
    text-align: center;
    width: 200px;
}

.languageText {
    color: #541388;   
    font-size: 12px;
}

h3 {
    color: #2e294e;
}


/* Mening stukje */

.opinionAndButton {
    height: 190px;
}

.opinion {
    background-color: #ffd400cc;
    border: 1px solid #ffd400cc;
    border-radius: 15px;
    padding: 20px;
    width: 390px;
    color: #d90368;
    text-align: center;
    font-weight: 850;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 30px;
}

.openButton { 
    display: flex;
    background-color: #ffd400;
    margin: 30px auto;
    padding: 10px 30px;
    cursor: pointer;
    color: #d90368;
    font-size: 10px;
}

/* Form */
form {
    background-color: #ffd400cc;
    border: 3px solid #d90368;
    border-radius: 15px;
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: -30px;
    padding: 30px;
}

input[type=text], textarea {
    border: 2px solid #d90368;
    background-color: #2a2926b1;
    color: #f1e9daff;
    margin: 5px;
    padding: 2px;
    width: 400px;
}

.nameInput, .idInput, .questionInput {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 30px 0px;
    color: #d90368;
}

.nameInput, .idInput {
    display: flex;
    align-items: center;
}

.buttonClose {
    background-color: #d90368cc;
    border: 1px solid #d90368cc;
    color: #ffd400;
    margin-left: 350px;
    padding: 8px 20px;
    font-size: 15px;
    cursor: pointer;
}

/* Javascript functie */
.formPopUp {
    display: none;
    bottom: 0;
    right: 15px;
    z-index: 9;
}


/* Footer */
footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2e294eb3;
    height: 95px;
    padding-bottom: 3px;
}

.footerText {
    color: #ffd400;
    text-align: center;
}


/* Responsive */
@media only screen and (max-width: 600px) {
    .opinion {
        width: 300px;
    }
    form {
        width: 290px;
    }
    .buttonClose {
        margin-left: 0;
    }
  }

