body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: url(../img/background.jpeg) no-repeat center center;
    background-size: cover;
    color: #f8f8f8;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-message {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

#hdrDescription {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

a.back-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #a6d608;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.back-link:hover {
    color: #d4f15d;
    text-decoration: none;
}

.contact-info {
    margin-top: 2rem;
}

.email-address {
    display: inline-block;
    font-size: 1.3rem;
    color: #f8f8f8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.email-address:hover {
    color: #d4f15d;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    text-decoration: underline;
}

.phone-number, .location {
    font-size: 1.2rem;
    margin: 0.3rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    transition: color 0.3s ease;
}

.phone-number:hover, .location:hover {
    color: #d4f15d;
}

hr.intro-divider {
    border: 1px solid #a6d608;
    margin: 1.5rem auto;
    width: 50%;
    opacity: 0.8;
}