@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');

.main-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #fff;
    text-align: center;
}

.big-logo {
    width: 50vw;
}

h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2vw;
    font-style: italic;
    text-transform: uppercase;
    margin: 0;
}

@media only screen and (max-width: 1200px) {

    h1 {
        font-size: 3vw;
      
    }
    .big-logo {
        width: 70vw;
    }
}

@media only screen and (max-width: 767px) {

    h1 {
        font-size: 1.2em;
        margin: 1em;
    }
    .big-logo {
        width: 90%
    }
}