.container {
    width: 80%;
    height: fit-content;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    top: calc(15vh - 5vmin);
    left: 50%;
    transform: translate(-50%);
    margin-top: 5vmin;
    border: 1.6vw grey double;
    border-radius: 3vw;
    background-color: rgba(255, 255, 255, 0.8);
    overflow: scroll;
}

.top-half {
    position: relative;
    height: 10vmin;
}

.top-half img {
    position: absolute;
    top: 0;
    left: 0;
    width: 10vmin;
    height: 10vmin;
    object-fit: contain;
}

.top-half h1 {
    text-align: center;
    width: 100%;
    font-size: 3vw;
    font-family: sans-serif;
}

.bottom-half {
    height: fit-content;
}

.bottom-half p {
    text-align: center;
    font-size: 3vw;
    font-family: sans-serif;
    font-weight: 500;
}

.bottom-half ol {
    display: block;
    width: 95%;
    padding-left: 5%;
}

.bottom-half li {
    text-align: left;
    font-size: 3vw;
    font-family: sans-serif;
    font-weight: 500;
    white-space: wrap;
}

.bottom-half a {
    text-decoration: none;
}

.bottom-half a:hover {
    text-decoration: underline;
}