/*
    Student Name: Juan Atuesta
    Date: 11/12/2025
    File Name: styles.css
*/

/* Style Rules for Hero Image and Header */

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)
    rgba(0, 0, 0, 0.5)), url(..\images\baby-hawk.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.welcome{
    position: absolute;
    top: 20%;
    margin: auto;
    padding: 2em;
}

.welcome p{
    font-size: 1.25em;
    width: 70%;
    line-height: 1.5;
}

/* Media Query for Tablet Viewport */
@media (min-width: 768px) { 
    
    .welcome {
        top: 20%;
        left: 5%;
        padding: 2em;
    }

}

/* Media Query for Desktop Viewport */
@media (min-width: 992px) { 
    
    .hero {
        background-position: left;
    }
    
    .display-1 {
        font-size: 8em;
    }
}
 /* Tablet Viewport: Style rules for table */
table{
    border: 1px solid #000;
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
}

caption {
    font-size: 1.5em;
    font-weight: bold;
    padding: 1%;
}

th, td{
    border: 1px solid #000;
    padding: 2%;
}

th {
    background-color: #000;
    color: #fff;
    font-size: 1.15em;
}

tr:nth-child(odd) {
    background-color: #ffe600;
}