@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;
    padding: 0;
    font-family: 'CustomFont';
}


/*
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;
    margin-right: 2% ;
}
.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: 10px;
}

.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;
    }
}