/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body,
html {
    background-color: #000;
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.middle {
    width: calc(100% - 50px);
    padding: 25px;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.middle img {
    width: 200px;
    user-select: none;
}

.vertical-line {
    height: 65px;
    width: 1px;
    background-color: #ffffff;
    margin-bottom: -24px;
    margin-left: 15px;
}

.tagline {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    margin-bottom: -25px;
    white-space: nowrap;
    margin-left: 15px;
}

.middle a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #fff;
    padding: 30px;
    transition: .2s;
    display: inline-block;
}

.middle a:hover {
    transition: .2s;
    opacity: .8;
}

.footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    margin-bottom: 20px;
    color: #fff;
}

h1 {
    color: #020202;
    font-size: 5px;
    position: absolute;
    pointer-events: none;
}

@media screen and (max-width: 600px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }

    .vertical-line {
        display: none;
        margin-left: 0;
        margin-top: 10px;
    }

    .middle img {
        width: 150px;
    }

    .tagline {
        margin-left: 0;
        margin-top: 10px;
    }
}