* {
    margin: 0px;
    padding: 0px;
    font-family: "Lato", sans-serif;
}

body {
    background-image: url("../img/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    color: #ffd400;
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

header i {
    color:#ffd400;
    font-size: 35px;
}

nav {
    display: flex;
    justify-content: space-between;
}

nav p {
    margin: 0px 50px 0px 50px;
}

nav p:hover {
    color: #d90368;
    cursor: pointer;
}

#web {
    background-color:#ffd400cc;
    padding: 50px 0px 50px 0px;
}

#webLessen {
    background-color:#d90368;
    color:#ffd400;
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    padding: 20px 10px 20px 10px;
    margin-bottom: 100px;
    text-align: center;
}

#textBoxWrapper {
    display: flex;
    justify-content: space-around;
}

#textBox {
    width: 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#textBox i {
    color:#d90368;
    font-size: 250%
}

#textBox p {
    color:#541388;
    font-size: 15px;
    text-align: center;
}

#textBox h3 {
    color:#541388;
}

#mainLower {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: auto;
    align-items: center;
}

#meningText {
    background-color:#ffd400cc;
    color:#d90368;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    padding: 20px 0px 20px 0px;
    margin-top: 100px;
    margin-bottom: 0px;
    text-align: center;
}

#formButton {
    background-color:#ffd400;
    color:#d90368;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 10px 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

#formButton:hover {
    cursor: pointer;
}

footer {
    background-color: #2e294eb3;
    color:#ffd400;
    height: 100px;
}

#footerWrap {
    padding: 0px 20px 0px 20px;
    display: flex;
    width: 70%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
}

#notQuiteNav {
    width: 40%;
    display: flex;
    justify-content: space-between;
}

#adress {
    text-align: center;
}

#formDiv {
    background-color:#ffd400cc;
    border: 4px solid #d90368;
    border-radius: 15px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

#theActualForm {
    padding: 20px 0px 20px 0px;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

#theActualForm label {
    color:#d90368;
}

input[type=text]{
    background-color: #2e294eb3;
    border: 1px solid #d90368;
}

textarea {
    background-color:#2e294eb3;
    border: 1px solid #d90368;
    height: 200px;
}

input[type=submit] {
    background-color:#d90368;
    color:#ffd400;
    border: none;
    padding: 5px 10px 5px 10px;
    text-align: center;
}

#buttonWontMove {
    margin: 0px 0px 20px 400px;
}