@import url(fonts.css?v=1.2.1);

body {
    background-color: #2e2e2e;
    color: white;
    text-align: center;
}

h1 {
    font-family: var(--ibm-semibold);
}

h3 {
    font-family: var(--ibm-regular);
}

.button-container {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    gap: 24px;
}

button {
    font-family: var(--ibm-regular);
    font-size: 120%;
    border-style: solid;
    border-radius: 15px;
    border-width: 2px;
    border-color: white;
    background-color: #2e2e2e;
    color: white;
    min-width: 220px;
    height: 55px;
    cursor: pointer;
}

.link-container {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    gap: 24px;
}

.link-container a {
    display: block;
    width: 100%;
    margin: 4px 0;
}

details {
    width: 100%;
}

summary {
    font-family: var(--ibm-light);
    cursor: pointer;
}

a {
    font-family: var(--ibm-light);
    padding: 5px;
    font-size: 120%;
}

a:link {
    color: aqua;
}

a:active {
    color: firebrick;
}

a:visited {
    color: lightblue;
}

li {
    font-family: var(--ibm-light);
    padding-top: 20px;
    padding-bottom: 20px;
    list-style: none;
    text-align: center;
}

p {
    font-family: var(--ibm-light);
}