* {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #5b646e;
}

.container {
    background-image: url(K.svg);
    width: 100%;
    height: 100vh;
    background-position: left;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px;
    box-sizing: border-box;
    overflow: hidden;
}

h2 {
    font-size: 50px;
    width: 900px;
    text-align: center;
    text-transform: uppercase;
}

p {
    font-size: 25px;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 950px) {
.container {
    background-size: cover;
}
    
h2 {
    width: 100%;
    font-size: 40px;
}
p {
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
}
    
}