div.titleContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
}

h1.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 100px;
    color: white;
    text-shadow: 2px 2px 4px #05060d95;
    margin: 0;
}

h2.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: white;
    text-shadow: 1px 1px 2px #05060d95;
    margin: 0;
}

@media (max-width: 760px) {
    h1.title {
        font-size: 50px;
    }

    h2.subtitle {
        font-size: 30px;
    }
}