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

:root{
    --primary-color: #00369a;
}
    

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size:16px;
    line-height: 1.8;
    background-color:#fff;
    margin: 0 20px;
}

a{
    color: var(--primary-color);
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}


header{
    margin: 1rem auto;
    display:flex;
    justify-content: center;
    align-items: center;
}

.container {
    margin: 0 auto;
    max-width: 768px;
}


h1 {
    padding: 5px 0;
    font-size: 1.7rem;
    color: #fff;
}


textarea:focus {
    border: solid 2px #f0f0f0;
    box-shadow: 0 0 5px #f0f0f0;
}

textarea {
    padding: 10px;
    font-size: 14px;
    border: solid 2px #f0f0f0;
    border-radius: 1rem;
    outline: none;
    width: 100%;
    height: 120px;
    resize: none;
}

.language {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

select {
    display: flex;
    height: 40px;
    width: 150px;
    outline: none;
    color: #74646e;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 1px 1px 2px #999;
    background: #eee;
    font-family: sans-serif;
    font-size: 20px;
  }

label {
    display: block;
    width: 100%;
}

.highlight {
    font-weight: bold;
}

.message {
    padding: 20px 10px;
}

html, body, .container-fluid {
    width: 100%;
    height: 100%;
}

.white{
    width: 50px;
    height: .5em;
    border: 0; border-top: 1px solid #ffffff;
}

.container-fluid,
.overlay:before {
    background: url("island.jpg") no-repeat fixed 0 0 / cover;
}

.container-fluid {
    align-items: center;
    display: flex;
    justify-content: center;
}

.overlay {
    align-items: center;
    margin: 0 auto;
    max-width: 768px;
    overflow: hidden;
    padding: 50px;
    position: relative;
    color: white;
    font-family: 'Lato', sans-serif;
    text-align: center;
    z-index: 0;
}

.overlay:before {
    content: '';
    filter: blur(20px);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}