﻿#landingImg {
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

#content-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 0 10% 0 5%;
    box-sizing: border-box;
    text-align: right;
}

#main-heading {
    font-size: 4rem;
    margin-bottom: 10rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-top: -35rem;
    font-weight: bolder;
}


#button-container {
    display: flex;
    gap: 30px;
    margin-bottom: 5%;
}

#news-button, #report-button {
    padding: 20px 40px;
    border: none;
    border-radius: 35px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

#news-button {
    background-color: #2e86de;
    color: white;
}

#report-button {
    background-color: rgba(255,255,255,0.9);
    color: #333;
}

    #news-button:hover, #report-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

.landing-header {
    background-color: #757575;
    padding: 20px;
    padding-right: 30px;
    margin-top: 40px;
    font-weight: bolder;
    font-size: 2rem;
    color: black;
}

#announcements {
    padding: 10px;
    font-weight: bolder;
    font-size: 2rem;
    color: black;
}

.announcement .title {
    text-decoration: underline;
}

.announcement .datetime {
    color: #333;
    margin-right: 20px;
    font-size: 12px;
}

.about-heading {
    margin-bottom: 20px;
    margin-top: 20px;
}

.about-paragraph {
    margin-right: 10px;
}
