body {
    padding: 0;
    margin: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-color: #fecd07;
    box-shadow: 0 4px 4px #00000040;
    z-index: 1000;
}

.logo {
    width: 50px;
    height: 50px;
    margin: auto 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

nav ul li {
    font-family: "Bangers", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin: auto;
}

nav li a {
    display: block;
    padding: 1rem;
    color: black;
    text-decoration: none;
}

nav li a:hover {
    background-color: #bfa13a;
}

nav li a:active {
    transform: scale(0.95);
    background-color: #917a26;
}

.home {
    background-image: url('images/home-bg.jpg');
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100vh;
    margin-top: 60px;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.home h1 {
    margin: 0 40px;
    font-size: 2.5rem;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
}

.home p , .home ul{
    margin: 0 40px;
    font-size: 1.5rem;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
}

.blur-container {
    box-shadow: 0px 0px 10px 9px rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 0, 0, 0.29);
    padding: 2rem 4rem;
    backdrop-filter: blur(2px);
}

.products {
    width: 100%;
    height: 100vh;
    background-color:#fecd07;
}

.products p {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
}

.products-img {
    width: 30%;
    height: auto;
    display: block;
    margin: auto;
}

.contact {
    width: 100%;
    height: auto;
    background-color: black;
    color: #fecd07;
    padding: 40px 0;
    text-align: center;
}

.contact p , .contact a{
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-top: 0%;
    text-align: center;
}

iframe {
    display: inline-block;
}

/*For mobile*/
@media (max-width: 768px) {
    header {
        height: 50px;
    }
    .logo{
        width: 30px;
        height: 30px;
    }
    nav ul li {
        font-size: 1rem;
    }
    .home {
        margin-top: 50px;
    }
    .home h1 {
        font-size: 2rem;
        margin-left: 20px;
    }
    .home p , .home ul{
        margin-left: 20px;
        font-size: 1rem;
    }
    .blur-container {
        padding: 1rem 0;
    }
    .products p {
        font-size: 1rem;
    }
    .products-img {
        width: 80%;
    }
    .contact p, .contact a {
        font-size: 1rem;
    }
    iframe {
        width: 200px;
        height: 200px;
    }
}