@import url('https://fonts.googleapis.com/css?family=Raleway');

*{
    background-color: black;
    font-family: 'Raleway', serif;
}

.main-container {
    display: flex;
    width: 100vw;
    height: calc(100vh - 100px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    padding-top: 100px;
    padding-bottom: 100px;
    animation: fadein 4s;
    -moz-animation: fadein 4s;
    -webkit-animation: fadein 4s;
    -o-animation: fadein 4s;
    max-width: 500px;
    width: 24vw;
    min-width: 200px;
}

a, a:active {
    color: #EE0B6F;
}

a:hover {
    color: #FE3C8F;
}

.contact {
    animation: fadein 4s forwards;
    -moz-animation: fadein 4s forwards;
    -webkit-animation: fadein 4s forwards;
    -o-animation: fadein 4s forwards;
    opacity: 0;
    animation-delay: 500ms;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4em;
}


@media (max-width: 800px) {
    .contact {
        font-size: 1.2em;
    }
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* sur Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* sur Safari et Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* sur Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}
