#hero {
    z-index: 1;
    width: 100%;
    height: 800px;
    margin: auto;
    background-color: black;
    background-size: cover;
    background-position: center;
}

#hero h1{
    color: rgb(250, 203, 1);
}

.report-content{
    display: flex;
    justify-content: center;
    align-items: start;
    @media (min-width: 500px) {
        margin: -350px 5% 50px 5%;
    }
    @media (max-width: 500px) {
        margin: -500px 0 50px 0;
    }
}

#report-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    max-width: 1100px;
    padding: 50px;
    border-radius: 15px;
}

.report-category {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.report-category .category {
    font-style: italic;
}

.report-category .date {
    color: #848404;
    
}

h1, h4 {
    width: 90%;
    text-align: center;
    
}

h1{
    min-height: 160px;
}

h4{
    min-height: 100px;
}

.report-preview {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-preview p {
    text-align: justify;
    font-size: 17px;
}

.report-preview h3 {
    
    text-align: center;
    margin: 50px 0px 20px 0px;
}

.report-preview h6 {
    
    
    text-align: start;
    width: 100%;
    margin: 30px 0px 10px 0px;
}

.action-button {
    background-color: white;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    gap: 30px;
}

.action-button .a1 {
    width: 220px;
}

.action-button .a2 {
    width: 130px;
}

.action-button .a3 {
    width: 200px;
}

.action-button a {
    text-decoration: none;
    color: black;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}
    
.action-button a img{
    width: 50px;
}

.action-button a div {
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
}