@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: white !important;
}

.background {
    background-image: url('/static/images/background3.jpg');
    background-size: cover;
    height: 100vh;
    position: relative;
}

.container {
    margin: 0 auto;
    width: 1200px;
    max-width: 100%;
    padding: 0 0 2.5rem 0;
    margin: 5rem;
    text-align: center;
}

#navigation {
    display: inline;
    color: white;
    font-size: 2rem;
    width: 100%;
    display: flex;
}

#navigation a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: white;
}


#navigation li {
    display: inline;
    margin: auto 8px;
    color: white;
}

.active {
    font-weight: bold;
    text-decoration: underline;   
}

#logo {
    width: 45%;
}

#logo img {
    width: 35%;
}

#navbar {
    background-color: #003049;
}

#navigation {
    list-style-type: none;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    color: white;
    font-size: 20px;
    text-align: center;
}

.my_form {
    width: 100%;
    max-width: 750px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: 100%;
    margin: 0 auto;
}

input {
    border-radius: 5px;
    border: 1px solid hsl(248, 32%, 49%);
    padding: 15px 25px;
    display: block;
    width: 100%;
}

#captcha-container {
    margin-top: 15px;
    width: 100%;
}

#captcha {
    width: 50%;
    margin: 0 auto;
}

#message {
    box-sizing: border-box;
    width: 100%;
    height: 120px;
}