*{
    margin: 0;
    padding: 0;

}

.main{
    width: 100%;
    
    background-position:center;
    background-size: cover;
    height:109vh;
}

.navbar{
    width:1200px;
    height: 75px;
    margin: auto;

}

.icon {
    display: flex;
    align-items: center;
    position:absolute;   /* keep it top-left */
    top:auto;
    left: 10px;
}

.logo-img {
    width: 200px;     /* small size */
    height: 140px;
    
}

.logo {
    color: yellow;
    font-size: 28px;
    margin: 0;
}
ul{
    display: flex;
    list-style: none;
    gap: 45px;
    justify-content: flex-end;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 0;
    margin-top: 27px;
    font-size: 14px;

}

ul li a{
    text-decoration: none;
    color: black;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out ;
}


.menu ul li a:hover {
    color: yellow;
}

.search{
    padding: 6px 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 14px;
}


section {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;

    text-align: center;
    padding: 20px;

    background: transparent;
}

/* Heading */
section h1 {
    font-size: 45px;
    color: #333333;
    margin-bottom: 20px;
}

/* Paragraph */
section p {
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Buttons */
section button {
    padding: 12px 105px;
    margin: 10px;
    border: none;
    border-radius: 25px;

    background-color: #fbc02d;
    color: white;
    font-weight: bold;
    font-size: 16px;

    cursor: pointer;
    transition: 1.3s;
}

/* Button Hover Effect */
section button:hover {
    background-color: #0b0a0b;
    color: white;
    transform: scale(1.5);
}

