/* General Styles */
body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}



.header .logo img {
    width: 150px;
}

.navbar {
    display: flex;
    justify-content: flex-end;
}

.navbar-list {
    list-style-type: none;
    padding: 0;
}

.navbar-links {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.navbar-links:hover {
    text-decoration: underline;
}

/* Main Section */
.live-classes {
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Class List */
.class-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.class-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.class-item h2 {
    margin: 0 0 10px;
    font-size: 1.8rem;
}

.class-item p {
    margin: 5px 0;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: hsl(216, 19%, 16%);
    height: 30px;
    width: 1470px;
    margin-top: 0px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
  }
  
  .btn {
    background-color: #00c8c8;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
  }
