*,
::after,
::before {
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    background: #ed5125;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    user-select: none;
}

.main-img {
    display: block;
    width: 100%;
    height: auto;
}



.contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color:white;
    text-align: center;
    font-weight: 300;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
    padding-bottom: 100px;
    font-size: 17px;
    line-height: 26px;
    opacity: 0;
    animation: fadeInAnimation ease 1.2s 800ms;
    animation-fill-mode: forwards;
    pointer-events: none;
    background: linear-gradient(176deg, #8a241f, #e83a33);
    margin-top: -1px;
}
.contact h2{
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    font-weight: 500;
    /* text-shadow: 0 0 10px #00000042; */
}
.contact b {
    font-weight: 500;
}
.contact a{
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-decoration: none;
}
.contact a:hover {
    color:black;
    text-decoration: underline;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
