#discover {
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.hero-content {
    padding: 20px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    top: 30%;
    transform: translateY(-30%);
}

#hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 96px;
    color: #000000EB;
}

#hero-text {
    font-weight: bold;
    font-size: 20px;
    color: #00000052;
}

@media (max-width: 768px) {

    #discover {
        height: 100vh;
    }

    .hero-content {
        top: 50%;
        transform: translateY(-50%);
        padding: 15px;
    }

    #hero-title {
        font-size: 36px;
    }

    #hero-text {
        font-size: 14px;
    }
}