html, body {
    font-family: "Arial", "Source Sans 3", sans-serif;
    font-size: clamp(11px, 2vw, 20px);
    height: 100%;
    margin: 0;
    color: #303030;
    background: #f0f0f0;
}

body {
    font-size: 1rem;
    overflow: auto;
    padding-bottom: 20px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(240,240,240);
    text-align: center;
    padding: 4px;
    font-size: 0.8rem;
}

h1 {
    font-size: 3rem; //clamp(1.5rem, 6vw, 4rem);
    text-align: center;
    color: #57068c;
    margin: 16px 0;
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: #57068c;
}

p {
    font-size: 1rem;
    line-height: 1.2;
}

.container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 4 auto;
    background-color: #f4f4f4;
    padding: 0;
    border-radius: 8px;
//            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.centered-text {
    text-align: center;
}

.insight {
    font-size: 1em;
    width: 80%;
    min-width: 300px;
    margin: 2rem auto;
    background-color: #f4f4f4;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}

a {
    display: inline-block;
    padding: 0px 0px;
    border: none;
    border-radius: 6px;
    color: #57068c;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.5s ease;
    margin-top: 10px;
}

a:hover {
    background-color: #d2d2d2;
}

hr {
    color: rgb(51,6,98);
//    background-color: rgba(51,6,98,1);
    height: 0.75px;
    border: none;
}

li {
    list-style-type: circle;
}

.button {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 16px auto;
    padding: 8px;
    font-size: 1.0rem;
    color: #fff;
    background: linear-gradient(135deg, #10002b, 50%, #702b9d);
    border: none;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: background-color 1.5s ease;
}

.button:hover {
    background: linear-gradient(135deg, #10002b, 20%, #702b9d);
}
