* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:Arial, Helvetica, sans-serif
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 { 
    font-size: 1.9rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 400;
}

h6 {
    color: #000;
}

button {
    font-size: 0.8rem;
    font-weight: 900;
    outline: none;
    border: none;
    background-color: #4160fb;
    color: #f5f5f5;
    padding: 13px 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s ease;
}

button:hover {
    background-color:#768cfc;
}

/* Navbar */

.navbar {
    display: flex;
    height: 100px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.logo {
    width: 200px;
    align-self: left;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-left: 20%;
    border: 1px solid #ccc;
    border-radius: 25px;
    width: 30%;
    background-color: #f5f6fa;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.search-container:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.search-container input {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 16px;
}

.search-container i {
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
    color: #666;
}

.nav-buttons {
    margin-left:20%;
}

/* Carousel */
.carousel {
  margin-top: 200px;
  align-content: center;
}

/* Carousel */