body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    margin: 0;
    padding: 0;
    background-color: #111111;
}
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color:rgb(52, 52, 52);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
h1, h2, h3 {
    color:#93ffd0;
}
h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
h2 {
    font-size: 28px;
    margin-top: 40px;
}
h3 {
    font-size: 22px;
    margin-top: 30px;
}
p {
    margin-bottom: 20px;
    font-size: 16px;
    color: white;
}
a {
    color:rgb(92, 88, 196);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.section {
    margin-bottom: 40px;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    color: #888;
    backdrop-filter: blur(75px);
    padding: 1.3rem 2rem;
    margin: 0 2rem;
    border-top: 1px solid #ddd;
}
.footer a {
    color:rgb(92, 88, 196);
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}