body {
    cursor: url('/images/icons8-blue-pointer-24.png'), auto;
    background-image: url('/images/hp_background_blur.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* align middle*/
    margin: 0;
    padding: 0;

    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.info-box li {
    list-style: none;
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box {
    box-shadow: 0px 5px 10px black;
    font-family: 'Roboto Slab', serif;
    background: rgb(28 38 41 / 95%);
    border: 1px solid #bed7da75;
    border-radius: 5px;
    padding: 20px;
    color: #eee;
    text-align: center;
    max-width: 700px;
    margin-top: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.info-box h2 {
    margin-bottom: 20px;
    text-decoration: underline;
}

.info-box p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    body {
        overflow: visible;
    }

    .info-box {
        max-height: 85%;
    }

    .info-box p {
        font-size: 1rem;
    }

    .container {
        padding: 15px;
        margin-top: 0;
    }
}