body {
    background: #B7490A;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 22px;
}

p {
    font-size: 18px;
}

.home .wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.wrapper {
    background: white;
    border-radius: 10px;
    padding: 10px 20px;
}

.left, .right {
    width: 50%;
}

.dropmenu ul li a {
    padding: 5px;
}

@media(max-width: 768px) {
    .home .wrapper {
        flex-wrap: wrap;
    }

    .left, .right {
        width: 100%;
    }
}