@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body{
    background: white;
    height: 100vh;
    text-align: center;
    color: #0100fb;
    display: flex;
    flex-direction: column;
    margin: 0px;
    font-family: 'Inter', sans-serif;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
     -ms-animation: fadein 2s; /* Internet Explorer */
      -o-animation: fadein 2s; /* Opera < 12.1 */
         animation: fadein 2s;
}

.container-comming-soon{
    max-width: 450px;
    width: 100%;
    margin: auto;
}

.container-comming-soon section.content p, .container-comming-soon section.content a{
    color: #0100fb;
    transition: all .3s;
}

.container-comming-soon section.content p a:hover{
    color: #ff0100;
}

.container-comming-soon img.img-logo{
    max-width: 300px;
    margin-bottom: 60px;
    width: 100%;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
     -ms-animation: fadein 2s; /* Internet Explorer */
      -o-animation: fadein 2s; /* Opera < 12.1 */
         animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}