* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'roboto', 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
}

.hero-section {
    background-image: url(../assets/super-hero.jpg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    background-color: rgba(30, 30, 30, 0.365);
    border-radius: 8px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e9ecef;
    background-color: rgba(30, 30, 30, 0.365);
    border-radius: 8px;
}

.hero-button {
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 15px 30px;
    transition: background-color 0.3s, transform 0,2s;
    
}
.hero-button2 {
    border: 2px solid black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 15px 30px;
    color: rgb(15, 151, 255);
    transition: background-color 0.3s, transform 0,2s;
}

.hero-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
.hero-button2:hover {
    background-color: #031d39;
    transform: translateY(-2px);
}