body {
    font-family: 'Poppins';
    width: auto;
}

body a {
    text-decoration: none;
    color: inherit;
}

main#main {
    background-image: url("/assets/okPdIwksTOeMjfuXyYx0_Grid_Course_Wide_V2.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    margin: 0;
}

div.announcement {
    position: absolute;
    top: 0;
    z-index: 100;
    background: #8a152c;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: white;
}
div.announcement a {
    font-style: italic;
    cursor: pointer;
    text-decoration: underline;
}

div.content {
    background: rgba(255,255,255,.95);
    padding: 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px;
}

div.content a {
    background: #de8311;
    margin: 0 auto;
    padding: 6px 12px;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    margin-top: 24px;
    cursor: pointer;
    font-weight: bold;
}

div.content h3 {
    text-align: center;
    margin: 6px;
    margin-bottom: 12px;
}
div.content p {
    text-align: center;
    margin: 3px;
}

div.content a:hover {
    background: #c3720f;
}

div.content a:active {
    transform: scale(.99)
}