@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Space+Grotesk:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    height: 100vh;
    position: relative;
    background-color: #000;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

a {
    color: white;
    text-decoration: none;
    transition: opacity 0.15s;
}
a:hover {
    color: #bbb;
    opacity: 0.7;
}

.socials-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 3rem;
    text-shadow: 3px 3px 1px rgb(0, 0, 0);
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
}

.video-container video {
    width: 110%;
    height: 110%;
    object-fit: cover;
    filter: blur(5px);
    position: absolute;
    top: -5%;
    left: -5%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeIn 2.5s ease-in-out;
}

.content h1 {
    font-size: 6rem;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 5px;
    text-shadow: -3px 0 1px rgb(30,242,241) , 3px 0 1px rgb(246,5,10) ;
}


.content .email {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 200;
    font-style: italic;
    font-family: 'Source Sans 3', sans-serif;
    opacity: 0.7;
    text-shadow: 3px 3px 1px rgb(0, 0, 0);
}

.mute-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 2;
    animation: fadeIn 3s ease-in-out;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
} 