* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../assets/architechture.jpg');
    backdrop-filter: brightness(0.5);
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: auto;
}


header {
    background-color: #000;
    color: antiquewhite;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    /* new changes */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: antiquewhite;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.search-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.search-container input {
    padding: 5px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
}

#story-behind-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: whitesmoke;
    width: 80%;
    margin: 0 auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Additional styling for headings and paragraphs */
h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: antiquewhite;
    font-family: 'Times New Roman', Times, serif;
}

p {
    font-size: 19.5px;
    /* line-height: 1.5; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 10px;
}