* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Times New Roman', Times, serif
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    color: white;
    text-align: center;
}

.center-text {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
}

.bottom-text {
    padding-bottom: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: lighter;
}