

#menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('assets/bg/stars.gif');
    background-repeat: repeat;
    overflow: visible;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

#menu h1 {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 10;
    display: inline-block;
    top: 150px;
    transform: scale(20);
    animation: wiggle 2s linear infinite;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#SolarSystem {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
}

.group {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.img-container {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#venusGif {
    transform: scale(0.75);
}

.group p {
    color: yellow;
    margin-top: 10px;
    text-align: center;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}