*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}

.banner {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
}
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: fill;
    opacity: 0.5;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 32px;
    color: yellow;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
}

.box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px;
}

.text1 {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid;
    width: fit-content
}

.text2 {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid;
    width: fit-content
}

.text3 {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid;
    width: fit-content
}

.banner-buy {
    background-color: green;
    text-align: center;
    color: white;
    position: relative;
}

.button {
    padding: 20px;
    margin-top: 10px;
    font-weight: bold;
    border-radius: 5px;
}