
a {
    color: #B8D3FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    background-color: black;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-family: "Cabin", sans-serif;
    margin: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 0px;
}

h2 {
    margin: 0px;
}

hr {
    border-color: #696969;
    border-width: 0px;
    border-bottom-width: 1px;
    align-self: stretch;
    margin: 5px 0px;
}

html {
    height: 100%;
    width: 100%;
}

p {
    margin: 0px;
}

svg {
    fill: var(--image-colour);
    width: var(--image-size);
    height: var(--image-size);
}

.secondary-text {
    color: #AAAAAA
}

.section {
    background-color: rgba(69, 69, 69, 0.3);
    border-radius: 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    z-index: 1;
}

.section .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.section-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

#about .content {
    gap: 15px;
}

#background {
    bottom: 0px;
    left: 0px;
    overflow: hidden;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 0;
}

#background .star {
    position: absolute;
}

#content {
    display: flex;
    gap: 25px;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
}

#main.content-hidden #title {
    display: none;
}

#main.content-hidden #content {
    display: none;
}

#main.content-hidden #toggle-content-button .visible {
    display: none;
}

#main.content-visible #toggle-content-button .hidden {
    display: none;
}

#toggle-content-button {
    background-color: rgba(69, 69, 69, 0.3);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    z-index: 1;
    --image-size: 30px;
    --image-colour: rgba(255, 255, 255, 0.4);
}

#toggle-content-button .hidden {
    display: flex;
}

#toggle-content-button .visible {
    display: flex;
}
