      /* Reset and Box Sizing */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Body Styling */
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        height: 100vh;
        background-color: #121212; /* Dark Mode Background */
        color: rgb(200, 200, 200); 

        margin-left: 20%;
        margin-right: 20%;
        margin-bottom: 5%;
        margin-top: 20%;

    }
    @media (max-width: 767px) {
        body {
            margin-left: 10%;
            margin-right: 10%;
            margin-bottom: 2%;
            margin-top: 5%;

        }
        .separator {
            width: 100%;
            height: 2px;  
            background-color: rgb(200, 200, 200); 
            margin-top: 5%;
            margin-bottom: 20%;
        }
    }
    
    @media (min-width: 768px) {
    .separator {
        width: 3px;  /* Set the thickness of the vertical line */
        height: 30%;  /* Full height of the container or page */
        background-color: rgb(200, 200, 200); 
        margin: 20px 0;  /* Add space around the vertical line */
    }
}

    /* Centering the Logo */
    .logo-container {
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-container img {
        max-width: 100%;
        height: auto;
        max-height: 40vh; /* Ensures responsiveness on smaller screens */
    }

    .blurb {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        text-align: left;
        
    }
    .connect {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        text-align: left;
        margin-top: 10%;
       
    }
    .connect a { 
            animation: colorCycle 5s infinite;
        }

.copyright{
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-align: left;
    font-size: 12px;
}
    /* Social Links Styling */
.social-links {
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-align: right;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 12px;
}

.social-links a:hover {
    text-decoration: underline;
    color: whitesmoke; /* Highlight color */
}
/* Header Styling */
header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 20px;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: flex-start;
}

header img {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    font-family: 'Nova Flat', sans-serif;
    font-size: 24px;
    color: #ffffff;
}
footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #121212; /* Dark Mode Background */
}


/* Dark Mode Support 
@media (prefers-color-scheme: light) {
    body {
        background-color: #d4d4d4; 
        color: #262626;
    }
 
    .social-links a:hover {
        color: #626262; 
        
    }
    .social-links a{
        color: #262626;
    }

    footer {
            background-color: #bebebe;
        }
    }*/
    /* Define the animation */
@keyframes colorCycle {
    0% {
        color: #86a4ad;
    }
    25% {
        color: #c99ab3;
    }
    50% {
        color: #b3a498;
    }
    75% {
        color: #9e8fbc;
    }
    100% {
        color: #a2b6b1;
    }
}
