@import url('https://fonts.googleapis.com/css2?family=Gulzar&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;



    font-family: gulzar;
    background-color: #101010;

    height: 100vh;

    overflow: hidden;
}

h1 {
    font-size: 90px;
    color: white;
    font-weight: 100;
    font-family: gulzar;

    margin-top: 10px;
    line-height: 50%;
}

p {
    font-family: rethink sans;
}

main p {
    text-align: left;
    color: red;
    font-size: 80px;
    font-weight: 100;
    animation: blinking 1.2s infinite ease;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    height: 100%;
    width: 100%;

    cursor: pointer;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 30px;


    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgb(255, 255, 255, 0.1);
}

header p {
    color: white
}

header>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

header>div p:nth-child(1) {
    font-size: 20px;
    color: red;
}

a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 10px 15px;
    background-color: rgb(255, 255, 255, 0);

    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 255, 255, 0.2);
    ;
    border-radius: 5px;

    transition: 0.15s ease;
}

a svg {
    height: 18px;

    fill: white;
}

a:hover {
    background-color: rgb(255, 255, 255, 0.2);
}


@keyframes blinking {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
        /* Apara mais devagar */
    }

    60% {
        opacity: 1;
        /* Mantém visível */
    }

    100% {
        opacity: 0;
        /* Desaparece rápido */
    }
}






.socialmedias {
    display: flex;
    align-items: center;
    gap: 10px;
}

.socialmedias>div {
    background-color: rgb(255, 255, 255, 0.1);
    padding: 10px 20px;

    cursor: pointer;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 15vw;
    }

    main p {
        font-size: 15vw;

    }

    header {
        padding: 20px 20px;
    }

    header>div {
        gap: 5px;
    }
}

.focus {
    opacity: 0%;
    position: absolute;

    height: 100px;
    width: 100px;
    border-radius: 999px;
    filter: blur(999px);

    background-color: rgb(255, 255, 255, 0.1);

    transition: 0.2s ease;

    z-index: -10
}