body {
    font-family: Roboto, sans-serif;
    margin: 0;
    
}

.container-1 {
    background-color: #1F2937;
    background-image: url("img/mir4-banner.png");
    background-size: cover;
    color: white;
    padding: 0 300px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.header-logo {
    font-weight: bold;
}

.links {
    display: flex;
}

.links a {
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.links a:hover {
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff4d4d;
}

ul {
    list-style-type: none;
    gap: 15px;
}

.hero-container {
    display: flex;
    padding: 50px 0;
    justify-content: space-between;
    align-items: center;
    
    
}

.hero-text {
    font-size: 48px;
    color: #f9faf8;
    font-weight: 900;
    
}


.secondary-text {
    font-size: 18px;
    color: #f9faf8;
}
.img {
    
    width: 600px;
    height: 400px;
    
    background-image: url(img/mir4-logo-nobg.png);
    background-size: auto;
}


button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(145deg, #c40000, #ff0000);
    border: none;
    border-radius: 12px;
    padding: 12px 36px;
    cursor: pointer;
    box-shadow: 0 4px 0 #800000, 0 0 15px rgba(215, 0, 0, 0.5);
    transition: all 0.25s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(145deg, #ff1a1a, #c40000);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.3);
}

button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 5px rgba(215, 0, 0, 0.6);
}

.hero button {
    margin-top: 20px;
    background: linear-gradient(145deg, #d70000, #a80000);
    box-shadow: 0 4px 10px rgba(215, 0, 0, 0.5);
}

.hero button:hover {
    background: linear-gradient(145deg, #ff1a1a, #d70000);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.7);
}

.cta button {
    background: linear-gradient(145deg, #d70000, #a80000);
    color: white;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 12px 36px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
}

.cta button:hover {
    background: linear-gradient(145deg, #ff3d3d, #b00000);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.8);
    transform: translateY(-2px);
}

.info {
    text-align: center;
    margin: 50px;
    font-size: 36px;
    font-weight: 900;
}

.container-2 {
   display: flex;
   justify-content: center;
   gap: 30px;
   padding: 0px 300px 100px;
}

.images {
    border-radius: 15px;
    border-color: #D60000;
    border-style: solid;
    border-width: 5px;
    width: 250px;
    height: 250px;
    background-color: gray;
    margin-bottom: 10px;
    
}

.warrior {
    background-image: url(img/warrior.png);
    background-position: 15% 25%;
}

.sorcerer {
    background-image: url(img/mage.png);
    background-position: 40% 10%;
}

.taoist {
    background-image: url(img/conjurer.png);
    background-position: 27% 0%;
}

.lancer {
    background-image: url(img/hunter.png);
    background-position: 37% 0%;
}

.text {
    max-width: 250px;
    text-align: center;
    
}

.class-name {
    font-weight: bold;
    font-size: large;
}

.container-3 {
    background-color: #e5e7eb;
    padding: 100px 300px;
}

.quote {
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
    text-align: center;
    font-style: italic;
}

.author {
    font-size: 30px;
    color: #1f2937;
    font-weight: bold;
    text-align: end;
}



.cta {
    display: flex;
    justify-content: space-between;
    background-color: #1f2937;
    border-radius: 20px;
    margin: 100px 300px;
    padding: 100px 200px;
    color: white;
}

.action {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 5px;
    
}


.footer {
    text-align: center;
    font-family: Roboto, sans-serif;
    background-color: #1f2937;
    color: white;
    font-weight: 700;
    padding: 50px 0;
}

.footer a {
    color: #ff4d4d;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
