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

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 4.5em !important;
    }

    h2 {
        font-size: 2em !important;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(4, 4, 4);
    color: #fafafa;
}

.container {
    width: 100vw;
    height: 100vh;
 
}

.center-div {
    position:absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 90%;
}

h1 {
    font-size: 5.5em;
    text-align: center;
}

h2 {
    font-size: 3em;
    text-align: center;
}