@charset "utf-8";
strong{
    font-size: 20px;
}
.a-phone{
    font-size: 1.75em;
    font-weight: 700;
}
a{
    font-weight: 700;
    color: #333333;
}
.o-landing{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.o-landing__content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.o-landing__image{
    margin-bottom: 32rem;
    animation: fadeIn forwards 3s ease-in-out;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}