:root {
    --background: #100e24;
    --section: #5248bc;
    --nestedSection: #3b3489;
    --link: #C5BFFF;
    --borderRadius: 20px;
    --borderRadius2: 10px;
    --textColor: #FFFFFF;
}
body {
    background-color: var(--background);
    color: var(--textColor);
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#header {
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: sticky;
    top: 0;
    background-color: rgba(16, 14, 36, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
}
#header-logos {
    display: flex;
    gap: 10px;
}
#header svg {
    width: 42px;
    height: 42px;
}
#header-links {
    display: flex;
    gap: 15px;
}
#header-links a {
    color: var(--textColor);
    background: none !important;
}
#header-links a:hover {
    color: var(--link);
}
h1, h2, h3, p {
    margin: 0px;
    padding: 0px;
}
a {
    color: var(--link);
    text-decoration: none;
    font-weight: bold;
    border-radius: var(--borderRadius2);
    transition: ease 0.4s all;
}
a:hover {
    padding-left: 6px;
    padding-right: 6px;
    background-color: var(--background);
}
.section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 600px;
    background-color: var(--section);
    border-radius: var(--borderRadius);
    padding: 14px;
    box-sizing: border-box;
}
.nested-section {
    background-color: var(--nestedSection);
    padding: 16px;
    border-radius: var(--borderRadius);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.buttons {
    display: flex;
    gap: 8px;
}
.buttons button {
    width: 100%;
    min-height: 46px;
    align-items: center;
    background-color: var(--section);
    color: var(--textColor);
    border: none;
    border-radius: 20px;
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    border: 4px solid var(--section);
    transition: ease 0.4s all;
}
.buttons button:hover {
    background-color: var(--background);
}