* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #6e766e;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.logo-section {
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.text-section {
    margin-bottom: 40px;
}

.text-section p {
    font-size: 18px;
    color: white;
    text-align: center;
    font-weight: 300;
    opacity: 0.9;
}

.links-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.link-button {
    background-color: #5d665d;
    border: 2px solid white;
    border-radius: 10px;
    padding: 30px 20px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-button:hover {
    background-color: #6e766e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.icon-svg {
    width: 60px;
    height: 60px;
    /* filter: brightness(0) invert(0); */
}

.text {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 600px) {
    .links-section {
        flex-direction: column;
        align-items: center;
    }
    
    .link-button {
        width: 200px;
        margin-bottom: 20px;
    }
}
