
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vujahday+Script&display=swap');

:root {
    --font-primary: 'Raleway', sans-serif;
    --font-secondary: 'Vujahday Script', cursive;
}
body {
    background-image: url("./image.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 99vh;
    width: 99vw;
    overflow: hidden;
}
.transparencia {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
body h1{
    z-index: 2;
    font-size: clamp(2rem, 8vw, 4rem);
    font-family: var(--font-primary);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    overflow: hidden;
    margin-top: -10px;
    margin-bottom: -2px;
}
h3,p{
    z-index: 2;
    font-family: var(--font-primary);
    color: white;
    text-align: center;
    max-width: 600px;
    max-width: 85vw;
}
div.redes{
    display: flex;
    gap: 20px;
    z-index: 2;
}
div.redes a{
    padding: 5px;
    width: 40px;
    height: 40px;
    display: block;
    color: white;
    cursor: pointer;
}
div.redes a>img{
    width: 100%;
    height: 100%;
    filter: invert(1) brightness(1.2) contrast(0.9);
    
}
.separator {
    width: 80%;
    height: 2px;
    background-color: white;
    margin: 20px 0;
    z-index: 2;
}
.typewriter {
    position: relative;
}
.typewriter::after {
    content: '';
    display: inline-block;
    width: 0.15em;
    height: 1em;
    margin-left: 0.15em;
    background-color: white;
    animation: blink 1s steps(2, start) infinite;
    vertical-align: bottom;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
body> img {
    z-index: 2;
    width: 200px;
    height: auto;
    margin-bottom: -50px;
}