* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
}
body {
    background-color: #000;
}
header {
    position: absolute;
    top:0;
    left: 0;
}
.welcoming-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100vh;
    width: 100%;
}
.welcoming-page-wrapper .welcoming-page-p {
    width: 30%;
    font-size: 1.5rem;
    line-height: 1.5em;
    text-align: center;
    /* border: red 1px solid; */
}
.welcoming-page-wrapper .welcoming-page-a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 100px 0;
    font-size: 1.5rem;
    /* border: red 1px solid; */

}
.welcoming-page-wrapper .welcoming-page-a .welcoming-page-btn {
    padding: 0 50px;
    /* border: blue 1px solid; */

}
.welcoming-page-wrapper .welcoming-page-a:before,
.welcoming-page-wrapper .welcoming-page-a:after {
    content: "";
    width: 100px;
    min-width: 100px;
    max-height: 1px;
    border: white 1px solid;
    background-color: #fff;
}
iframe {
    width: 100%;
    height: 199vh;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 50px 0;
    color: white;
    box-shadow: 0 -1px 10px grey;
}
footer a{
    text-decoration: none;
    color: white;
}
.fadein{
    animation: fadeIn 1.5s ease-out;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}