body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #231f20;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background-color: #f1b629;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo img {
    max-width: 100%;
    height: auto;
    animation: logoEffect 3s infinite;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #231f20;
}

.branches {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.branch h2 {
    margin-top: 0;
    color: #231f20;
}

.branch p {
    margin: 5px 0;
    color: #231f20;
}

.branch a {
    color: #231f20;
    text-decoration: none;
    font-weight: bold;
}

.branch a:hover {
    text-decoration: underline;
}

@keyframes logoEffect {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}

@keyframes textEffect {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
    }
}

@media (min-width: 600px) {
    .branches {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .branches {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
