body {
    margin: 0;
    background-color: #F5EBE0;
}

.center {
    display: flex;           /* establish flex container */
    flex-direction: column;  /* make main axis vertical */
    justify-content: center; /* center items vertically, in this case */
    align-items: center;     /* center items horizontally, in this case */
    height:100vh;
}

.logo {
    font-size: 0.8vw;
    text-align: center;
    color: #F64747;
}

.logo2 {
    width: 50vw;
}

.contact {
    display: inline;
    width: 50%;
    margin: 0 auto;
}