
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
}


header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ff3333;
    text-decoration: none;
    font-weight: bold;
}


.links-section {
    text-align: center;
    padding: 50px 20px;
}

.links-section h2 {
    font-size: 32px;
    color: #ff3333;
    margin-bottom: 10px;
}

.links-section .description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}


.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.link-item {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    width: 280px;
    transition: transform 0.3s ease-in-out;
}

.link-item:hover {
    transform: scale(1.05);
}

.link-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.link-item a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

.link-item a:hover {
    color: #ff3333;
}


footer {
    text-align: center;
    padding: 15px;
    background-color: #1a1a1a;
    margin-top: 50px;
}
