body {
    background: radial-gradient(circle, #800000, #000000);
    margin: 0;
  }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 50px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

nav ul li.cart a {
    color: red;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    color: #fdfdfd;
}

.hero h1 {
    font-size: 2.5em;
    color: #ff0000;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 10px 20px;
    background: rgb(109, 19, 19);
    color: #fff8f8;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.characters img {
    display: block;
    margin: 0 auto;
    max-width: 400px;
    height: auto;
}


.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-button {
    position: relative;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #f40202;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-button button {
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #333;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-button:hover {
    background-color: #ff0000;
    color: #fc0000;
}













  
