@font-face {
    font-family: 'CustomFont';
    src: url(fonts/red-dead-redemption/CHINESER.TTF);
}

body{
    background-image: url(header_RDR2.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    font-family: 'CustomFont';
    
    grid: 5px;
    display: grid;
  grid-template-areas:
    'header header header header header  menu '
    'right right right center center center'
    'footer footer footer footer footer footer ';
  
  
}

/*GRID*/
.item1 { grid-area: header; }
.item2 { grid-area: right; }
.item3 { grid-area: center; }
.item4 { grid-area: menu; }
.item5 { grid-area: footer; }



.grid-container > div {
  text-align: center;
}

/*
header
*/
.text{
    flex-grow: 1;
    background: #272928;
    font-family: 'CustomFont';
    position: fixed;
    width: 100%;
    color: rgb(255, 255, 255);
    font-size: 175%;
    font-weight: bold;
    text-align: center;
}

.text h1.hide_text{
display: none;
}


/*
image of revolver; MENU
*/
.dropbtn  {
    background-color: rgba(0, 0, 0, 0);
    color: rgb(0, 0, 0);
    padding-top: 15%;
    font-size: 16px;
    border: none;
    position: relative;
    
}

.dropup {
    font-family: 'CustomFont';
    float: right;
    position: relative;
    text-align: center;
    
}
.dropup-content {
    position: relative;
    display: none;
    
    background-color: #f1f1f1;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0);
    top: 100%;
    right: 0%;
    padding: 0;
}

.dropup-content li{
    list-style-type: none;
}

.dropup-content li a{
    color: rgb(0, 0, 0);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}

.dropup-content a:hover {
    background-color: #ccc
}

.dropup:hover .dropup-content {
    display: block;
}


@media screen and (max-width: 550px){
    .text h1.hide_text{
        display: block;
        font-size: 100%;
        width: auto;
        padding-right: 60% ;
        float: left;
        border-style: none;

    }

    .text h1{
        display: none;
    }
}


.item2, .item3{
    background-color: #ffffff57;
}

.center{
    
    font-size: 160%;
    color: rgb(0, 0, 0);
    text-align: center;
    
}

.right{
   
    font-size: 175%;
    color: rgb(0, 0, 0);
    text-align: center;
    
}