@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    --colorShadow: rgba(0, 0, 0, 0.3);
}

.container {
    position: fixed;
    width: 100%;
    height: 100%;
}

.navbar-main {
    display: fixed;
    position: relative;
    width: 100%;
    height: 5%;
    background-color: rgba(0, 0, 0, 0.7);
    flex: 1 0;
    white-space: nowrap;
    min-width: 0;
    box-shadow: 0px 0px 10px black;
}

.background-img {
    position: fixed;
    background: url(../assets/wallpaper.jpg);
    background-color: rgb(22, 22, 22);
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.flex-container a {
    text-decoration: none;
    margin: 0.6% 1%;
}

.flex-container i {
    color: white;
}

.flex-container #navbar2, .flex-container #navbar3, .flex-container #navbar4 {
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.0vh;
    margin: 0.6% 1%;
    transition: 0.3s ease;
}

.flex-container #navbar1 {
    color: rgb(131, 131, 131);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.0vh;
    margin: 0.6% 1%;
    transition: 0.3s ease;
}

.flex-container #navbar2:hover, .flex-container #navbar3:hover {
    color: rgb(189, 120, 55);
    cursor: pointer;
}

.flex-container #navbar4:hover {
    color: rgb(102, 55, 189);
    cursor: pointer;
}

.title-main {
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-items: center;
    user-select: none;
}

.title-main h1 {
    text-align: center;
    font-size: 7.0vh;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
    text-shadow: 1px 1px 5px var(--colorShadow), 0 0 1em var(--colorShadow), 0 0 0.2em var(--colorShadow);
    transition: 0.3s ease;
}

.img-logo-home {
    position: fixed;
    background: url(../assets/logo.png);
    height: 100%;
    width: 100%;
    background-size: 10% 15%;
    opacity: 0.020;
}

.title-main i {
    font-size: 3.0vh;
    margin: 0% 3%;
    text-align: center;
    align-items: center;
}

.title-main a:hover {
    color: black;
    background-color: white;
}

.title-main h1 i {
    position: fixed;
    top: 35%;
    left: 43%;
    font-size: 15.0vh;
}

.title-main p {
    position: fixed;
    top: 60%;
    font-size: 2.0vh;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
    text-shadow: 1px 1px 3px var(--colorShadow), 0 0 1em var(--colorShadow), 0 0 0.2em var(--colorShadow);
    /* transition: 1s ease; */
    animation: changeTitle 5s infinite linear;
}


@keyframes changeTitle {
    0% {
        color: transparent;
        filter: blur(2px);
        text-shadow: 1px 1px 3px transparent, 0 0 1em transparent, 0 0 0.2em transparent;
    }
    50% {
        color: white;
        filter: blur(0px);
        text-shadow: 1px 1px 3px var(--colorShadow), 0 0 1em var(--colorShadow), 0 0 0.2em var(--colorShadow);
    }
    100% {
        color: transparent;
        filter: blur(2px);
        text-shadow: 1px 1px 3px transparent, 0 0 1em transparent, 0 0 0.2em transparent;
    }
}