
body {
    margin: 0;
    height: 100vh;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Prompt', sans-serif;
    text-align: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -300px;
}
.skynet-logo {
    position: relative;
    background: repeating-linear-gradient(#f00 0 1%, transparent 1% 2%);
    clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
    width: 250px;
    height: 250px;
    margin: 30px auto;
}

.skynet-logo::before {
    content: "";
    position: absolute;
    background: transparent;
    transform: rotate(45deg);
    border: solid #000 22px;
    bottom: 21%;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 50px;
}

.skynet-logo::after {
    content: "";
    position: absolute;
    background: #000;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 22px;
    height: 16%;
}

h1 {
    font-size: 3rem;
    font-family: 'Terminator Real NFI', sans-serif;
    margin: 10px 0 5px;
}

h2 {
    font-size: 1rem;
    font-family: 'Andika', sans-serif;
}

.animated-line {
    position: relative;
    font-family: 'Terminator Real NFI', sans-serif;
    font-size: 0.9rem;
    margin: 20px 0;
}

.animated-line::before,
.animated-line::after {
    content: "";
    position: absolute;
    background: #000;
    top: -3px;
    height: calc(100% + 3px);
    width: 30%;
}

.animated-line::before {
    left: -30%;
    animation: leftClip 3s linear infinite;
}

.animated-line::after {
    right: -30%;
    animation: rightClip 3s linear infinite;
}

@keyframes leftClip {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes rightClip {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

p {
    color: #f00;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
}

p::before,
p::after {
    content: "";
    background: #f00;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

p::before {
    left: -1.2rem;
}

p::after {
    right: -1.2rem;
}

.button {
    display: inline-block;
    color: #ff0000;
    border: 2px solid #ff0000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #ff0000;
    color: black;
    box-shadow: 0 0 10px #ff0000;
}
