html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}



@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');


body {
    position: relative;
    overflow: auto;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    overflow-x: hidden;
    font-family: 'Oswald', sans-serif;
}


/*Roboto font import*/
.mainDiv {
    width: 100vw;
    height: 100vh;
}
.main {
    width: 100vw;
    height: auto;
    margin-top: 50vh;
    transform: translate(0, -50%);
}

#cta {
    position: absolute;
    height: 10vh;
    width: 100%;
    margin-top: -10vh;
    cursor: pointer;

    animation-name: arrowMove;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 0ms;
}

.arrow {
    height: 9vh;
    margin-left: 50%;
    transform: translate(-50%, 0);
    filter: drop-shadow(7px 7px 10px #bd9a9b);
    

}
@keyframes arrowMove {
    0% {margin-top:  -15vh;}
    50% {margin-top: -13vh;}
    100% {margin-top: -15vh;}
}

.change {
    opacity: 0;
    transition: opacity 250ms ease-in;
}

.change.appear {
    opacity: 1;
    
}

.title {
    height: 40vh;
    width: 100%;
    background-color: #D7141A;
    text-align: center;
    color: white;
    line-height: 0;
}

.title h2 {
    font-size: 8vw;
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-weight: 400;
    
}

.title h4 {
    font-size: 4vw;
    position: relative;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-weight: 300;
    letter-spacing: 2.5px;
}

h3 {
    display: none;
}

.titleText {
    border-bottom: 50px;
    font-size: 5vh;
    height: 60vh;
    width: 40%;
    position: relative;
    text-align: center;
    margin-top: 10vh;
    padding-bottom: 10vh;
    font-weight: 300;
    left: 50%;
    top: 0%;
    transform: translate(-50%);
}

.titleText ul {
    padding: 0;
}
.titleText ul li {
    width: 100%;
list-style-type: none;
display: flex;

}
.middle {
    width: 33%;
    display: inline-block;
}

.left {
    font-weight: 900;
    width: 33%;
    display: inline-block;
    text-align: left;
}
.right {
    font-weight: 900;
    width: 33%;
    display: inline-block;
    text-align: right;
}

.mob {
    display: none;
}

footer {
    width: 105%;
    height: 20vh;
    background-color: rgb(44, 44, 44);
    color: white;
    font-size: 2vh;
    display: flex;
}

.linkWrapper {
    display: inline-block;
    width: max-content;
    height: 50px;
    margin-top: 10vh;
    transform: translate(0, -50%);
}
.copyright {
    display: inline-block;
    width: max-content;
    height: max-content;
    margin-left: 47.5%;
    margin-top: 10vh;
    transform: translate(-52.5%, -50%);
}

.imgSize {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.imgSize a{
    position: relative;
    width: 20px;
    height: 20px;
    
}
.imgSize a img {
    position: relative;
    padding-left: 8px;
    padding-top: 8px;
    width: 40px;
    height: 40px;
    
}

.tl {
    width: 50vw;
    height: 70vh;
}

.yt:hover {
    
    background-color: #FF0000;
    transition: background-color 150ms ease-in;
}
.ig:hover {
    background-color: #00d4ff;
    transition: background-color 150ms ease-in;
}
.rb:hover {
    background-color: #ed1b24;
    transition: background-color 150ms ease-in;
}
.ss:hover {
    background-color: #00b2a6;
    transition: background-color 150ms ease-in;
}
