body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
    background-color: #fff;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

h1 {
    font-size: 3em;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

header {
    text-align: left;
    margin-bottom: 20px;
}

header p {
    font-size: 1.3em;
    margin-top: 8px;
}

.mint-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 80px;
}

.mint-option {
    background-color: #fff;
    padding: 15px;
    border-radius: 14px;
    text-align: leading;
    flex: 1;
    margin: 0 10px;
    transition: transform 0.3s;
    border: 1px solid #ECE8EF;
}

.mint-details {
    height: 180px;
}

.mint-option:hover {
    transform: scale(1.05);
    background-color: #ECE8EF;
    cursor: pointer;
}

.mint-option h3 {
    margin-top: 0;
    font-size: 1.3em;
    margin-bottom: 16px;
}

.option-subtitle {
    color: #DC493A;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: -12px;
    margin-bottom: 40px;
}

.mint-option button {
    background-color: #ECE8EF;
    color: #4392F1;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.mint-option button:hover {
    /* background-color: #0056b3; */
}

.remember-choice {
    text-align: left;
}


/* On mobile, make .mint-option stack vertically */
@media (max-width: 600px) {
    .mint-options {
        flex-direction: column;
    }

    .mint-option {
        margin: 10px 0;
    }
}
