* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.top-loader {
    position: absolute;
    top: 0;
    background-color: #cccccc;
    width: 0px;
    height: 1.5px;
    animation: TopLoader 3s ease-in;
}

@keyframes TopLoader{
    0% {
        width: 0%;
    }
    50% {
        width: 80%;
    }
    100% {
        width: 100%;
    }
}

header {
    width: 100%;
    height: 100vh;
    background: url("../img/bg-cover-image.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

nav {
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

nav .logo {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    font-weight: 500;
    /* letter-spacing: -1.8px; */
    transition: 0.3s;
    /* padding: 5px 12px; */
    transform: scale(1, 1.5);
}

nav .logo:hover {
    color: rgba(255, 255, 255, 0.9);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0px 5px;
}

nav ul li a {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 5px 12px;
    transition: 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
}

nav ul li a:active {
    transition: 50ms;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    box-shadow: 0.5px 1.5px 5px rgba(0, 0, 0, 0.5);
}

footer {
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.5);
    padding: 0px 30px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

footer p:hover {
    color: rgba(255, 255, 255, 0.9);
}