html, body{
    height: 100vh;
    margin: 0
}

.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
    width: 100%;
    background-color: #000000;
}

.title-container{
    padding: 20px;
    border-radius: 10px;
    background-color: #000000;
}

.title {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.title-text {
    margin: 0;
    color: #EEEEEE;
    font-size: 5rem;
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
}

.message-container {
    padding-top: 10px;
}

.message-text {
    margin: 0;
    color: silver;
    font-size: small;
    font-weight: 600;
    font-family: "Noto Sans", sans-serif;
}

.contact-container {
    height: 10%;
    width: 100%;
    background-color: #212121;
}

.contacts {
    padding: 20px;
}

.contact {
    margin: 0;
    color: silver;
    font-family: "Noto Sans", sans-serif;
}