body {
    background-color: #1B3023;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.logo {
    width: 150px;
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

a {
    display: inline-block;
