.banner {
    background-image: url("https://cdn.marvel.com/u/prod/marvel/i/mg/6/50/65a93b12e38f1/clean.jpg");
    height: 80vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5vw;
    gap: 2vh;
}

.namebnr {
    border: 0.1vw white solid;
    width: fit-content;
    padding: 1vh 0.5vw;
}

.bannertxt {
    font-weight: bold;
    font-size: 2.2vh;
}

.btn {
    background-color: red;
    font-weight: bold;
    padding: 2vh 2vw;
    width: fit-content;
}

.text {
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 10vh 5vw 1vh 5vw;
    font-size: 2.5vh;
}

.sections {
    background-color: white;
    padding: 5vh 5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3vw;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 15vw;
}

.name {
    color: black;
    font-weight: bold;
    font-size: 15px;
}

.writer {
    color: gray;
    font-weight: bold;
    font-size: 10px;
}

.image {
    height: 50vh;
}

.button {
    background-color: white;
    display: flex;
    justify-content: center;
}

.namesection {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 576px) {
    .image {
        height: 35vh;
    }
    .sections {
        gap: 2vw;
    }
    .section {
        width: 44vw;
    }
}