@font-face {
    font-family: 'Proxima Thin';
    src: url('./proxima_nova_alt_thin-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-family: 'Proxima Thin';
    font-display: auto;

}
.accessibleHidden {
    opacity: 0.001;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
body {
    padding: 0;
    margin: 0;
    background: #EAE9E2 !important;
    display: flex;
    display:flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: "Proxima Thin", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    color: #333333;
}
.container {
    max-width: 1140px;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
p {
    margin:0;
    opacity: 0;
    animation: fadeInUp .75s ease-in-out forwards;
    padding: 0 1rem;
    text-align: center;
}
.main-logo{
    display: block;
    width: 59%;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInUp .75s ease-in-out forwards;
    animation-delay: 0ms;
}
.domain{
    animation-delay: 1000ms;
}
.email{
    margin-top: 20px;
    animation-delay: 2000ms;
    letter-spacing: 1px;
}
a {
    color: #333333;
}
@media (max-width: 767px){
    .main-logo{
        width: 201px;
    }
    .email {
        font-size: 14px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    60% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}
img { max-width: 80%; }