@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", "Poppins", sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: black;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    transform: scale(0);
    z-index: -999;
}

iframe.visible{
    opacity: 1;
    transform: scale(1);
}

.borders {
    background: rgba(0, 0, 0, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(4.8px);
    -webkit-backdrop-filter: blur(4.8px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: -1;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -997;
    animation: bordersAnim 4s ease-out forwards;
}

@keyframes bordersAnim {
    0% {
        background: rgb(0, 0, 0);
    }
    50% {
        background: rgba(0, 0, 0, .75);
    }
    100% {
        background: rgba(0, 0, 0, .14);
    }
}

.black-border {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: black;
    display: flex;
    align-items: center;
    z-index: -998;
}

.black-border.ready {
    height: 30px; 
    transition: all 3s ease-out;
}

.black-border.top {
    top: 0;
}

.black-border.bottom {
    bottom: 0;
}

.content {
    z-index: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.welcome {
    width: 100%;
    height: fit-content;
    text-align: center;
}

.welcome h1 {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeZoomIn 3s ease-out forwards;
}


.welcome p {
    color: #acacac;
    font-weight: 400;
}

@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(2) translateY(100px);
        letter-spacing: 40px;
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 5px;
    }
}

.socials {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.socials a {
    height: 30px;
    width: 30px;
    text-align: center;
    padding: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.socials a:visited {
    color: #fff;
    text-decoration: none;
}

.socials a:hover {
    color: #939393;
}

.socials a:active {
    color: #a8048f;
}

footer {
    color: white;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

