@import url('https://fonts.googleapis.com/css?family=Amatic+SC:400,700|Oswald:200,300,400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Oswald';
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.name_big {
    font-family: 'Amatic SC';
    font-weight: 400;
    font-size: 50pt;
    position: absolute;
    z-index: 1000;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    line-height: 50vh;  
    width: 100vw;
}

a {
    text-decoration: none;
}

.logo {
    font-family: 'Amatic SC';
    font-weight: 700;
    color: #ffffff;
    font-size: 15pt;
    position: absolute;
    top: 15px;
    left: 15px;
}

.header {
    font-family: 'Amatic SC';
    font-weight: 700;
    color: #ffffff;
    font-size: 40pt;
    position: absolute;
    text-align: center;
    vertical-align: middle;
    line-height: 100vh;  
    width: 50vw;
}

.header_img {
    background-size: cover;
    background-position: center;
}

@media (min-aspect-ratio: 21/6) {
    .header_video {
        width:100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 21/6) {
    .header_video { 
        width:auto;
        height: 100%;
    }
}

.main_item {
    width: 50vw;
    height: 100vh;
    float: left;
    overflow: hidden;
}

.main_item:first-child {
    background-color: #2c3e50;
}

.main_item:last-child {
    background-color: #c0c0c0;
}

.menu_item {
    width: calc(25vw - 2px);
    height: calc(33.33vh - 2px);
    float: left;
    border: 1px solid #000000;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.menu_item_header {
    font-family: 'Amatic SC';
    font-weight: 700;
    color: #ffffff;
    font-size: 30pt;
    position: absolute;
    text-align: center;
    vertical-align: middle;
    line-height: calc(33.33vh - 2px);  
    width: calc(25vw - 2px);
}

.text_area {
    width: 60%;
    height: 60%;
    margin: 20% auto 20% auto;
    /* background-color: #dddddd; */
}

.text_area_header {
    font-family: 'Amatic SC';
    font-weight: 700;
    color: #ffffff;
    font-size: 30pt;
    margin-bottom: 20px;
}

.text_area_content {
    font-family: 'Oswald';
    font-weight: 300;
    color: #ffffff;
    font-size: 12pt;
}

/* SMARTPHONES PORTRAIT */
@media only screen and (max-width: 480px) {
    body {
        overflow: scroll;
        overflow-x: hidden;
    }

    .image, .video {
        height: 100vh!important;
        overflow: hidden;
    }

    .main_item {
        width: 100vw;
        height: auto;
        overflow: scroll;
    }

    .main_item:last-child {
        height: 200vh;
    }
    
    .name_big {
        font-family: 'Amatic SC';
        font-weight: 400;
        font-size: 24pt;
        position: absolute;
        z-index: 1000;
        color: #ffffff;
        text-align: center;
        vertical-align: middle;
        line-height: 50vh;  
        width: 100vw;
    }
    
    a {
        text-decoration: none;
    }
    
    .logo {
        font-family: 'Amatic SC';
        font-weight: 700;
        color: #ffffff;
        font-size: 15pt;
        position: absolute;
        top: 15px;
        left: 15px;
    }
    
    .header {
        font-family: 'Amatic SC';
        font-weight: 700;
        color: #ffffff;
        font-size: 40pt;
        position: absolute;
        text-align: center;
        vertical-align: middle;
        line-height: 100vh;  
        width: 100vw;
    }
    
    .header_img {
        background-size: cover;
        background-position: center;
    }
    
    @media (min-aspect-ratio: 21/6) {
        .header_video {
            width:100%;
            height: auto;
        }
    }
    
    @media (max-aspect-ratio: 21/6) {
        .header_video { 
            width:auto;
            height: 100%;
        }
    }
    
    .main_item:first-child {
        background-color: #2c3e50;
    }
    
    .main_item:last-child {
        background-color: #c0c0c0;
    }
    
    .menu_item {
        width: 100vw;
        height: calc(33.33vh - 2px);
        border: 1px solid #000000;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
    
    .menu_item_header {
        font-family: 'Amatic SC';
        font-weight: 700;
        color: #ffffff;
        font-size: 20pt;
        position: absolute;
        text-align: center;
        vertical-align: middle;
        line-height: calc(33.33vh - 2px);  
        width: 100vw;
    }
    
    .text_area {
        width: 90%;
        height: 60%;
        margin: 20% auto 20% auto;
    }
    
    .text_area_header {
        font-family: 'Amatic SC';
        font-weight: 700;
        color: #ffffff;
        font-size: 20pt;
        margin-bottom: 20px;
    }
    
    .text_area_content {
        font-family: 'Oswald';
        font-weight: 300;
        color: #ffffff;
        font-size: 11pt;
    }
}

/* SMARTPHONES LANDSCAPE */
@media only screen and (max-width: 768px) {

}

/* TABLETS PORTRAIT */
@media only screen and (max-width: 1024px) {

}  