body {
    background: #FFED44;
    font-family: 'Quicksand', sans-serif;
    color: #191919;
}

.main-body {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo div {
    width: 350px;
}


.bg-img {
    background-image: url('/assets/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 150px;
    left: 0;
    z-index: -1;
    opacity: 20%;
}
  

.btn-section {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.all-btns {
    grid-column: 1/3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.btn-style {
    font-weight: 700;
    font-size: 20px;
    background-color: #FDE867;
    padding: 1.5rem 1rem;
    border: 1px solid white;
    border-radius: 1.5rem;
    text-align: center;
    width: 50%;
    cursor: pointer;
    transition: all 300ms ease;
}

.btn-style:hover {
    color: #494343;
    border: 1px solid black;
}

.small {
    width: 60px;
}

.normal {
    width: 100px;
}

.all-imgs {
    position: relative;
    grid-column: 1/3;
    grid-row: 1;
    z-index: -1;
}

.image.one {
    position: absolute;
    top: -70px;
    left: 250px;
}

.image.two {
    position: absolute;
    top: -60px;
    left: 670px;
}

.image.three {
    position: absolute;
    top: 140px;
    left: 180px;
}

.image.four {
    position: absolute;
    top: 250px;
    left: 680px;
}

.image.five {
    position: absolute;
    top: 400px;
    left: 150px;
}

.image.six {
    position: absolute;
    top: 540px;
    left: 700px;
}

.image.seven {
    position: absolute;
    top: 650px;
    left: 150px;
}

footer {
    text-align: center;
    margin: 3rem 0;
}

small {
    font-size: 1rem;
    font-weight: 600;
}

