/* style.css */
/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Class-based styling */
.container {
    height: 100vh;
    background-color: beige;
    background-image: url(../images/hero_mob.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

h1 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: lightgreen;
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    padding: 1.2rem 1rem 2rem;
    text-shadow: 2px 2px 5px black;
}
p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2rem;
    color: white;
    width: 100%;
    padding: 5rem 1.5rem;
    text-align: justify;
}
.hero-button {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 5rem;
}
.hero-button .hero-btn {
    background-color: brown; /* Green */
    color: white;
    padding: 10px 5px;
    border: 1px solid rgb(230, 118, 7);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    width: 200px;
    /*margin: 5rem 12rem;*/
}

.hero-button .hero-btn-light {
    background-color: lightgreen;
    border: 2px rgba(165, 42, 42, 0.77) solid;
    padding: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    width: 200px;
}

@media(min-width: 50em){
    .container {
        background-image: url(../images/hero.jpg);
        background-size: cover;
    }
    h1 {
        font-size: 3.5rem;
        width: 60%;
        text-align: left;
        margin-top: 6rem;
        padding: 2rem;
    }
    p {
        font-size: 1.3rem;
        color: whitesmoke;
        width: 40%;
        padding-top: 1rem;
        padding-left: 2rem;
    }
    
    .hero-button {
      text-align: left;
      padding-top: 0;
      display: block;
    }
    .hero-button .hero-btn {
        margin: 3rem 2rem;
        background-color: gold;
        color: black;
    }
}