body {
	color:#FFFFFF;
    background-color: var(--back-blue);
    width: 100%;
    margin: auto;
    padding: 0px;
    height: 100%;
    font-family: "Montserrat", sans-serif;
}


a:link {
    color: #ffffff;
    text-decoration:none;
}

/* visited link */
a:visited {
    color: #ffffff;
    text-decoration:none;
}

/* mouse over link */
a:hover {
    color: #125259;
    text-decoration:none;
}

/* selected link */
a:active {
    color: #ffffff;
    text-decoration:none;
}



:root {
    --back-blue:#19BDCE;

}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
    margin: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.title {
    font-size:32px;
    line-height: 16px;
    font-weight: 400;
    font-style: normal;
    padding-top: 16px;
    padding-bottom: 16px;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    padding-top: 48px;
    padding-bottom: 24px;
    font-size: 26px;
}

.method {
    padding-left: 8px;
    padding-right: 8px;
    text-transform: uppercase;
    letter-spacing: 4px;

}

.legal {
    font-family: "Montserrat", sans-serif;
    font-size:16px;
    line-height: 21px;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    align-content:center;
    text-align: center;
    text-transform: uppercase;
    padding-top: 48px;
    padding-bottom: 24px;
    position: absolute; bottom: 96px; 
}

.logo {
   
    margin: 0 auto;
}

.logo img {
    width: 700px;
    text-align: center;
}

/*  DESKTOP */

@media only screen and (min-width: 1200px) {

.title {
    font-size: 21px;
}
.contact {
    font-size: 16px;
    padding-top: 48px;
    padding-bottom: 48px;
}
.logo img {
    width: 550px;
}

.legal {
    font-size: 12px;
    line-height: 16px;
}


}