* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html {
    height: 100%;
    background: url('../images/crossback.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(30, 27, 41, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}

.logo::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #3e0466;
    animation: showRight 1s ease forwards;
    animation-delay: 0.4s;
}

.navbar a {
    font-size: 18px;
    color: #d6d6ff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #a374ff;
}

.quote-container {
    background: rgba(30, 27, 41, 0.8); /* Slight background overlay for better readability */
    padding: 40px;
    border-radius: 10px;
    color: #ffffff;
    max-width: 800px;
    margin-top: 100px; /* To ensure the quote doesn't overlap with the header */
}

.quote-container h1 {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-container p {
    font-size: 24px;
    color: #a374ff;
}

@keyframes showRight {
    100% {
        width: 0;
    }
}
