body{
    background-color: #000;
}
.container-banner{
    width:100vw;
    height: auto;

}

.container-banner img{
    width: 100%;
    height: 100%;
}

.main{
    margin-top: 80px;
    color: white;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

h1{
    font-size: 2rem;
    margin: 20px 0;
    letter-spacing: 3px;
    text-align: center;
}
.merch{
    padding: 80px 0;
}

.merch-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 90%;
    gap: 40px;
}

.merch-item{
    width: 250px;
    padding: 10px;
    border: 1px solid #AE8625;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.merch-item img{
    width: 100%;
    border-radius: 10px;
}

.merch-item button{
    background: linear-gradient(90deg,rgba(174, 134, 37, 1) 0%, rgba(247, 239, 138, 1) 34%, rgba(210, 172, 71, 1) 78%, rgba(237, 201, 103, 1) 100%);
    color: #000000;
    font-weight: bold;
    border: 1px solid #AE8625;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}