html, body {
    height: 100%;
    margin: 0;
    background-color: #042236;
}

.container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
}

.svg-wrapper {
    position: relative;
}

.circle-container {
    position: absolute;
    margin-top: 2vmin;
    width: 75vmin;
    height: 75vmin;
    background: radial-gradient(circle, rgba(255, 192, 24, 0.4) 0%, rgba(255, 255, 0, 0) 70%);
    border-radius: 90%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.svg-container {
    position: relative;
}

.svg-container img {
    width: 100%;
    height: auto;
    animation: springEffect 2s infinite ease-in-out;
}

@keyframes springEffect {
    0% {
        transform: scale(0.9) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(0);
    }
    100% {
        transform: scale(0.9) translateY(0);
    }
}

.text-container {
    margin-top: 40px;
    color: #FFC018;
    font-family: Arial, sans-serif;
    font-size: 60px;
}

.footer {
    position: fixed;
    bottom: 5vh;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #E09528;
}
.version {
    bottom: 5vh;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #E09528;
}
