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

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    font-family: 'Arial', sans-serif;
}

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

.logo {
    width: 375px;
    height: 200px;
}

.email {
    margin-top: 20px;
    color: #999;
    text-decoration: none;
    font-weight: normal;
    font-size: 0.8rem;
}
.email:hover {
    color: #023e9a;
}