/* style.css */
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling for the body */
body {
    font-family: Arial, sans-serif;
}

/* Header styling */
header {
    background-color:rgb(127, 199, 217);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

nav li {
    display: inline; /* or inline-block */
    margin-right: 10px; /* adjust spacing as needed */
}
nav {
    text-align: right;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}

nav a:hover {
    background-color: #555;
    border-radius: 5px;
}
/* Hero section styling */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #AAD7D9; /* Your chosen background color */
    color: white;
}

/* Hero section title styling */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Subtitle styling */
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Contact link styling */
.contact-link {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: white;
    color: #333;
}

/* Projects heading styling */
.projects {
    margin-top: 40px;
    text-align:center;
    
}
.about{
    color: #fff;
}


/* Hero images styling */
.hero img {
    width: 252px;
    height: 176px;
    margin: 5px;
    object-fit: cover;
}

  footer {
    background-color: rgb(15, 16, 53);
    text-align: center;
    padding: 5px 10px;
  }

  footer a {
    color: white;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: none;
  }

/* Responsive design for hero images */
@media screen and (max-width: 768px) {
    .hero img {
        width: 100%; /* Full width on smaller screens */
        height: auto; /* Adjust height automatically */
        margin: 5px 0; /* Stack images with vertical space */
    }

    .hero {
        flex-direction: column;
    }

    header {
        flex-wrap: wrap;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        
    }
    
}
.about h1{
    text-align: center;
    color: #fff;
    font-family: Sacramento;

}

.newspaper {
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(127, 199, 217);
    justify-content: space-between;
    gap: 20px;
    margin: 20px;
}

.column {
    background: #ffffff;
    flex: 1;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}
h2{
    color: rgb(15, 16, 53);
    margin: 10px;
}
.summary p{
    margin: 10px;
}

header {
    background-color: rgb(127, 199, 217);
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    
}

/* Logo styling */
.logo {
    width: 50px; /* Set the size of your logo */
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

/* Navigation menu styling */
nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}

nav a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Search input styling */
nav input[type="search"] {
    padding: 5px;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
}

/* Hero section styling */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #AAD7D9; /* Your chosen background color */
    color: white;
}

/* Hero section title styling */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Subtitle styling */
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Contact link styling */
.contact-link {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: white;
    color: #333;
}




body {
    background-image: url('');
    background-size: cover;
    background-attachment: fixed;
    background-color: rgba(54, 84, 134,0.9);
}

.overlay {
    background-color: rgba(170, 215, 217, 0.9); /* Overlay color with transparency */
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {
    .column {
        margin-bottom: 10px;
    }
}

footer {
    background-color: rgb(15, 16, 53);
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
}
