main {
    min-height: 100vh;
    padding: 0 15px;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    background-image: url('../assets/icons/logo.svg');
    width: 260px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    text-align: center;
    width: 100%;
    position: relative;
}

.content h1 {
    font-family: 'Rosefield', sans-serif;
    font-size: 80px;
    font-weight: 400;
    margin: 0 0 25px 0;
}

.content p {
    font-family: 'BrandonGrotesqueLight', sans-serif;
    font-size: 16px;
    margin: 0 auto;
    max-width: 500px;
    letter-spacing: 0.7px;
    line-height: 1.5;
}

.subscribe-email {
    margin: 2rem auto;
    width: 100%;
    max-width: 260px;
}

.subscribe-email input {
    width: 100%;
    line-height: 5;
    max-width: 230px;
    font-size: 17px;
    outline: none!important;
    border: none;
    border-bottom: 1px solid #000;
    font-family: 'BrandonGrotesqueRegularItalic', sans-serif;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 0;
    line-height: 1.5;
    padding: 15px 15px;
}

.subscribe-email:not(.submitted-form-email) input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.subscribe-email:not(.submitted-form-email) input:focus::-moz-placeholder {
    opacity: 0;
}

.subscribe-email:not(.submitted-form-email) input:focus:-ms-input-placeholder {
    opacity: 0;
}

.subscribe-email:not(.submitted-form-email) input:focus:-moz-placeholder {
    opacity: 0;
}

.subscribe-email input::-webkit-input-placeholder {
    opacity: 1;
    color: #000;
}
.subscribe-email input::-moz-placeholder { /* Firefox 19+ */
    opacity: 1;
    color: #000;
}
.subscribe-email input:-ms-input-placeholder { /* IE 10+ */
    opacity: 1;
    color: #000;
}
.subscribe-email input:-moz-placeholder { /* Firefox 18- */
    opacity: 1;
    color: #000;
}

.subscribe-submit input {
    font-size: 17px;
    text-transform: uppercase;
    border: none;
    padding: 0 0 1px 0;
    margin: 1rem 0 0;
    appearance: none;
    outline: none;
    cursor: pointer;
    font-family: 'BrandonGrotesqueRegular', sans-serif;
    position: relative;
    border-bottom: 1px solid #000;
    background-color: #f7f7f7;
    box-shadow: none;
    outline: none;
    border-radius: 0;
}

.spinner {
    display: none;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

@media only screen and (min-width: 600px) {
    main {
        padding: 0 30px;
    }

    .logo {
        width: 350px;
        height: 35px;
        top: 60px;

    }

    .content h1 {
        font-size: 130px;
    }

    .content p {
        font-size: 17px;
    }

    .subscribe-email input {
        font-size: 18px;
    }

    .subscribe-email {
        max-width: 340px;
    }
    
    .subscribe-email input {
        max-width: 310px;
    }
} 

@media only screen and (min-width: 2000px) {
    .logo {
        width: 465px;
        height: 40px;
        top: 100px;

    }

    .content h1 {
        font-size: 160px;
    }
}