﻿.black-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    width: 100%;
    height: fit-content;
    padding: 20px;
}

.black-background > img:nth-of-type(1) {
    height: 40px;
}

.black-background > div:nth-of-type(1) {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.black-background > div:nth-of-type(1) img {
    height: 40px;
}

.black-background > div:nth-of-type(1) > div:nth-of-type(1) {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    column-gap: 10px;
}

.black-background > div:nth-of-type(2) {
    width: 100%;
    display: flex;
    justify-content: left;
    text-align: left;
    margin-top: 20px;
}

.black-background h1 {
    color: white;
}

.centered-heading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.name-container {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.name-container > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    column-gap: 10px;
}

.name-container > div > div {
    height: 40px;
    width: 40px;
    background-color: black;
    border-radius: 10px;
}