/* Reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
}

/* Full-page background image */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/7880626/pexels-photo-7880626.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
}
header {
    background:rgba(28, 61, 205, 0.772);
    color: #fff;
    padding: 5px; 
    text-align: center;
    border-bottom: 5px solid #00307a; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    z-index: 1000; 
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.social-media-icons {
    display: flex;
    align-items: center; 
    margin-left: 10px; 
}

.social-media-icons a {
    text-decoration: none; 
    color: white; 
    font-weight: bold; 
    font-family: 'Open Sans', sans-serif; 
    font-style: italic; 
}

.social-media-icons a:hover h2 {
    animation: shake 0.5s forwards; 
}

.nav-links {
    list-style: none;
    display: flex; 
    justify-content: flex-end;
    padding: 0; 
    margin: 0;
}

.nav-links li {
    margin: 0 1rem; 
}

.nav-links a {
    color: white;
    font-weight: bold; 
    font-family: 'Open Sans', sans-serif; 
    font-style: italic; 
    text-decoration: none; 
    transition: transform 0.3s ease, color 0.3s ease; 
}

.nav-links a:hover {
    transform: scale(1.1); 
    color: darkgray; 
}

/* Centered container for text */
.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
}

/* Text styling */
.content-container p {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
