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

body, html {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}
a{
    outline: none;
}

.content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-container {
    /* max-width: 90%; */
    /* max-height: 90vh; */
    width: min(90%, 1000px);
    animation: fadeIn 1.7s ease-in;
}

.logo-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.logo-container a{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container a img{
  display: block;
  line-height: 1;
  max-width: 100%;
  max-height: 90vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        width: 400px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 250px;
    }
}

canvas {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}