@import url('https://fonts.googleapis.com/css?family=Open+Sans');

/*Header stuff*/
.Button{
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    background-color: black;
    border: none;
    color: white;
    font-size: 3VW;
    margin: 0;
    opacity: 200%;
}
.button:hover{
    background-color: blue;
    opacity: 100%;
}


.Header{
    grid-column-start: 1;
    
    grid-row-start: 1;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    left: 0%;
    margin: 0;
    display: grid;
    height: 100px;
    width: 100%;
    border: none;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: 100%;
    background-color: black;
    opacity: 100%;
    z-index: 1000;
}
/*Button area*/
.ver{
    grid-column-start: 9;
    color: white;
    font-size: 0.6VW;
}

