@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #002d37 0%, #000000 70%);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #00bcd4);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    margin: 0;
    color: #00bcd4;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00bcd4, 0 0 20px #00bcd4;
}

p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 10px 0 0 0;
    line-height: 1.6;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-info {
    margin-top: 30px;
}

.contact-info a {
    color: #00bcd4;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: #00e5ff;
    border-bottom: 1px solid #00e5ff;
    text-shadow: 0 0 5px #00bcd4;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
