* {
    margin: 0;
    padding: 0;
}


header {
    background-color: #1a3441;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

header a {
    text-decoration: none;
    color: #1a3441;
}

header a:hover {
    color: #3d7a99;
}

header img {
    margin: 1vh;
    width: 20%;
}

.maincontent img {
    float: left;
    border: 5px solid #ccc;
    margin-right: 1%;
}

.maincontent div {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
}

.maincontent div p {
    width: 100%;
}

header ul {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    color: #1a3441;
}

header ul li {
    margin: 1%;
    list-style-type: none;
}

.maincontent {
    width: 100%;
    background-color: #1a3441;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: white;
}

.maincontent h1 {
    font-size: 3vw;
    margin: 1vw;
}

.maincontent h2 {
    font-size: 3vw;
    margin: 1vw;
}

.maincontent p {
    width: 70%;
    margin-bottom: 1vw;
    font-size: 1.5vw;
    text-align: justify;
}

.maincontent ul {
    width: 70%;
    margin-bottom: 1vw;
    font-size: 1.5vw;
    text-align: justify;
}

.maincontent ul li {
    width: 70%;
    margin-bottom: 1vw;
    font-size: 1.5vw;
    text-align: justify;
}



footer {
    width: 100%;
    height: 10vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    color: #1a3441;
}

/*  */

.titles {
    width: 30%;

}

#form_message {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    margin: 1vw;
    padding: 1vw;
    width: 40%;

}

.flexform {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.5vw;
}

#form_message input,
textarea {
    border-radius: 5px;
    height: 3vh;
    width: 50%;
}

#submit {
    height: 5vh;

}

#form_message h2 {
    text-align: center;
}


@media screen and (max-width: 1000px) {
    .maincontent h1 {
        font-size: 6vh;
    }

    .maincontent p {
        width: 80%;
        margin-bottom: 1vh;
        font-size: 3vh;
    }
}