body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.top-bar {
    background-color: #333;
    padding: 1rem;
    display: flex;
    justify-content: flex-end; /* Aligns the menu to the right */
}

.top-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem; /* Reduces the space between menu items */
}

.top-bar ul li {
    margin: 0;
}

.top-bar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cover {
    background: linear-gradient(45deg, #0099ff, #33ccff);
    color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.cover h1 {
    font-size: 3rem;
    margin: 0;
}

.cover p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.content {
    padding: 2rem 1rem;
    background-color: #f4f4f4;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-item {
    background-color: white;
    padding: 1.5rem;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.additional-content {
    padding: 2rem 1rem;
    background-color: #333;
    color: white;
    text-align: center;
}
