@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0 6em;
    color: #FFFFFF;
    background-color: #333333;
}

header h1 {
    margin: 2em 0 0 0;
    text-align: center;
}

header p {
    text-align: center;
    margin: 2em;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2em;
}

main section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em;
    border-radius: 20px;
    color: #000000;
    background-color: #FFFFFF;
}

main section h3 {
    border-bottom: 3px solid #333333;
    text-align: center;
    margin-bottom: 1em;
}

main section a {
    text-decoration: none;
    font-weight: 500;
    padding: 0.5em 1em;
    margin: 0 auto;
    text-align: center;
    background-color: #75c5d9;
    color: #333333;
    max-height: 1.5em;
    border-radius: 10px;
}

main section a:hover {
    background-color: rgba(0, 90, 150, 0.6);
}

footer {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    font-size: 0.8em;
    height: 35vh;
}

footer a p {
    color: #ffffff;
    text-decoration: underline #ffffff 1px;
    text-underline-offset: 2px;
}

@media screen and (max-width: 69em) {
    body {
        margin: 0 3em;
    }

    main {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 52em) {
    main {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 40em) {
    body {
        margin: 0 2em;
    }

    header h1 {
        font-size: 1.5em;
    }

    main {
        grid-template-columns: 1fr;
    }
}

/* REPORT PAGE */

iframe {
    height: 90vh;
    width: 100%
}

#report-page {
    background-color: #FFFFFF;
}

#report-a {
    margin: 1em;
    padding: 0.5em 1em;
    background-color: #333333;
    border-radius: 10px;
    font-weight: 600;
    color: #FFFFFF;
    max-width: fit-content;
}

#report-a a {
    color: #FFFFFF;
}

#report-a:hover {
    cursor: pointer;
    background-color: rgba(155, 155, 155, 0.6);
    color: #000000;
}