/*
	Name: Kaylan Stake
	Filename: aboutstylesheet.css
	Date: 11/25/2024
*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Nav */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fefae0;
}


header {
    position: sticky;
    top: 0;
    background-color: #cce3de;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: auto;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a5759;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .logo img {
        height: 40px;
    }
}


/* Columns */

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}
/* Footer */

footer{
    background-color:  #faedcd;
    margin-top: 50px;
	text-align: center;
}

/* Banner */
.banner {
    position: relative;
    background-image: url('images/banner.png'); 
    background-size: cover;
    background-position: center;
    height: 400px; 
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 20px;