body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}



.container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 30px solid #B0E0E6;  /* Powder Blue border */
    box-sizing: border-box;
    position: relative;
    padding-top: 60px; /* Add some top padding */
}

h1 {
    font-size: 4em;
    color: #333;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
}

.top-nav {
    position: absolute;
    top: 70px;
    right: 50px;
    z-index: 1000;
}

.nav-container {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
}

.top-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* This will align the list items horizontally */
}

.top-nav ul li {
    margin: 0 35px; /* This adds some space between the links */
}

.top-nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 0.75em;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-nav ul li a:hover {
    color: #B0E0E6;  
}

.social-links {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.social-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;  
    transition: color 0.3s ease;
    font-size: 24px; /* Increase icon size */
}

.social-links a:hover {
    color: #B0E0E6; 
}

body {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

body.fade-out {
    opacity: 0;
}
.animated-title {
    transition: transform 0.3s ease, color 0.3s ease;
}

.animated-title:hover {
    transform: scale(1.05);
    color: #B0E0E6;
}

.animated-subtitle {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.animated-subtitle:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}
