body {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    margin: 0;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 0, 0);
    padding: 15px 20px;
    text-align: right;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

header::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 0;
    left: 0;
}

.bot {
    color: rgb(255, 255, 255);
    font-size: 35px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bot:hover {
    transform: scale(1.1);
}

.links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin: 0 10px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
    font-family: Arial, sans-serif;
}

.links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.073);
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.lines-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    animation: moveUp 2s linear infinite;
}

@keyframes moveUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}
