body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    touch-action: none;
}

main {
    flex-grow: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    position: relative;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    color: #333;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 400px;
    margin-bottom: 20px;
    /* animation: float 5s ease-in-out infinite; */
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #734A8C, #26408B, #23D5AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact {
    font-weight: 400;
    font-size: 1rem;
}


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

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
        margin: 10vw;
    }
    .subtitle {
        font-size: 1rem;
    }
    .logo {
        max-width: 300px;
    }
}

a {
    color: #8E44AD;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    color: #333;
    padding: 20px 0;
}

footer a {
    color: #26408B;
} 