
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Rounded MT Bold', sans-serif;
    color: white;
    background-color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4a300;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.content {
    flex: 1;
    background-color: #f4a300;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.button {
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2rem;
    display: inline-block;
    width: fit-content;
}

.image {
    flex: 1;
    overflow: hidden;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    header, nav ul {
        flex-direction: column;
        align-items: center;
    }
    .content {
        padding: 1.5rem;
        text-align: center;
    }
    .content h1 {
        font-size: 1.8rem;
    }
    .button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    .image img {
        height: auto;
    }
    main {
        flex-direction: column;
    }
}
