@font-face {
    font-family: 'Myriad Custom';
    src: url(../fonts/myriad-pro-cufonfonts/MyriadPro-Light.otf) format('truetype');
}

@font-face {
    font-family: 'Myriad Custom Regular';
    src: url(../fonts/myriad-pro-cufonfonts/MYRIADPRO-REGULAR.OTF) format('truetype');
}

@font-face {
    font-family: 'Myriad Custom Semibold';
    src: url(../fonts/myriad-pro-cufonfonts/MYRIADPRO-SEMIBOLD.OTF) format('truetype');
}

@font-face {
    font-family: 'Myriad Custom Bold';
    src: url(../fonts/myriad-pro-cufonfonts/MYRIADPRO-BOLD.OTF) format('truetype');
}

.background-image {
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    z-index: -1;
    
    background-image: url('../images/background-restaurant.jpg');
    background-size: cover;
    background-position: center;
    /* filter: blur(8px); */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Myriad Custom', 'MyriadPro-Light', 'Arial';
    position: relative;
    z-index: 1;
    overflow: hidden;

    width: 100%;
    height: 100%;
}

.main {
    height: 100vh;
    display: flex;
    
    flex-direction: column;
    position: relative;
}

.block {
    margin: 0 10px 10px;
    font-size: 30px;
    text-align: center;
    justify-content: center;

    flex: 2;

    max-height: 100%;
}

.main-block {
    flex: 3;

    display: flex;
    align-items: center;
}

.main-block img {
    width: 100%;
    max-height: 180px;
}

.block:nth-child(1) {
    display: flex;
}

.block:nth-child(1) img {
    width: 38px;
    max-height: 30%;
}

.block:nth-child(3) {
    color: white;

    display: flex;
    flex-direction: column;

    margin: 0 10px 50px;
}

.block:nth-child(3) span {
    flex: 1;
}

.block .proximamente h1 {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 900;
    transform: scaleY(1.5);
}

.block .proximamente p {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 100;
    transform: scaleY(1.5);
}

.block .footer {
    text-align: center;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 100;
    transform: scaleY(1.5);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.block .footer span {
    margin-top: 1%;
    flex: 1;
}

.block .footer span:nth-child(1) {
    flex: 0;
}

.block .footer span:nth-child(2) {
    text-align: center;
    font-size: 15px;
}

.block .footer span:nth-child(3) {
    letter-spacing: 2px;
}

.block .footer a,
.block .footer a,
.block .footer a:hover,
.block .footer a:active,
.block .footer a:visited {
    color: white;
}


@media (min-width: 576px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {
    .block:nth-child(3) {
        margin: 0 10px 10px;
    }

    .block:nth-child(3) {
        display: flex;
        flex-direction: column;
    }

    .block .footer span:nth-child(1) {
        flex: 1;
    }

    .block .footer {
        text-align: right;
    }

    .block:nth-child(1) img {
        width: 35px;
        max-height: 30%;
    }
}

@media (min-width: 1200px) {
    
}