@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

#mainNav {
    padding: 0.5rem 0;
    background-color: #1f2230;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

#logo img {
    height: 100px;
    width: auto;
}

#mainNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

#mainNav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;

}

#mainNav a:first-child {
  margin-right: auto;
}

#mainHeader {
    background-color: #282c3d;
    background-image: url("img/header.png");
    background-position: center;
    
    background-size: cover; 
    color: white;
    height: 500px;
    text-align: center;
}