*{
    /* CSS Reset */
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;

    /* Bootstrap Font Styling */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #212529;
}


/* Bootstrap Headings */
h1, h2, h3, h4, h5, h6{
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
    color: #4d1434;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}


/* Header */
header{
    display: grid;
    grid-template-columns: auto 1fr auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    overflow: hidden;
    z-index: 1000;
    background-color: whitesmoke;
}

.logo-bird{
    height: 2rem;
    margin: 1rem 0.5rem 1rem 1rem;
}

.brand-name{
    font-size: 1.2rem;
    padding: 1.1rem 0;
    font-weight: 600; 
    letter-spacing: 0.0625rem;
    color: #4d1434;
}

.look-opp-btn-header{
    font-size: 1rem;
    padding: 1.25rem 1rem;
    letter-spacing: 0.0625rem;
    background-color: #4d1434;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.look-opportunities-icon{
    font-size: 1rem;
    color: white;
}


/* Main */
.description-section{
    display: flex;
    align-items: center;
}

hr{
    border: 1px solid #4d1434;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.main-hr{
    border: 1px solid transparent;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.decorative-img{
    width: 70%;
    margin-right: 30%;
    border-radius: 10px;
}

.small-screen-h1{
    padding-top: 1rem;
    font-size: 1.75rem;
    color: #4d1434;
}

.small-screen-h2{
    padding-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.small-screen-div p{
    text-align: center;
}

@media (min-width: 768px) {
    .large-screen-div{
        display: grid;
        width: 100%;
        padding: 6rem 8% 0 8%;
    }

    .small-screen-div{
        display: none;
    }

    .main-div{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    h1{
        font-size: 2rem;
    }

    .look-opp-btn-header:hover{
        opacity: 0.8;
    }
}

@media (min-width: 1024px) {
    .large-screen-div{
        display: grid;
        width: 100%;
        padding: 6rem 16% 0 16%;
    }
}

@media (max-width: 767px) {
    .large-screen-div{
        display: none;
    }

    .small-screen-div{
        display: grid;
        width: 100%;
        padding: 6rem 20% 0 20%;
    }

    .main-div{
        display: grid;
        grid-template-columns: 1fr;
    }

    .main-hr{
        margin-top: 1rem;
    }

    .small-screen-top-hr{
        margin-top: 1rem;
    }

    .decorative-img{
        width: 100%;
        margin-right: 0;
        border-radius: 10px;
    }
}

@media (max-width: 525px) {
    .small-screen-div{
        padding: 6rem 15% 0 15%;
    }
}

@media (max-width: 425px) {
    .small-screen-div{
        padding: 6rem 10% 0 10%;
    }
}

@media (max-width: 375px) {
    .brand-name{
        display: none;
    }

    header{
        grid-template-columns: 1fr auto;
    }
}



/* Footer */
footer{
    padding: 1.2rem 1rem 1.2rem 1rem;
    margin-top: 2rem;
    background-color: black;
}

.copyright{
    text-align: center;
    color: white;
    font-size: 0.875rem;
}

.footer-developer-link{
    color: gold;
    font-size: 0.875rem;
    text-decoration: none;
}