/* Reset default margin and padding */
html,
body,
div,
h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Set a background color for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #90898987;
}

/* Style the navigation bar */
.navbar {
    background-color: #000000;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* Style the welcome section */
.welcome-section {
    background-image: url('welcome-background.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: rgb(255, 0, 0);
    padding: 100px 0;
}

.welcome-text h1 {
    font-size: 36px;
}

.welcome-text p {
    font-size: 18px;
    margin: 20px 0;
}

.arrow-icon {
    font-size: 24px;
}