*{box-sizing: border-box;}

html,body{
max-width: 100%;
overflow-x: hidden;
background-color: rgb(211, 211, 211);
}

.head
{
    padding: 10px;
    top:0px;
    width: 100%;
    height: 150px;
    display: center;
}

.logo{
    text-align: center;
    display: block;
    margin-top: -100px;
 margin: auto;
    font-size: 50px;
}

.button{
    width: 50px;
    height: 50px;
    background-color: aquamarine;
    
}
.menu{
    text-align: right;
    position: fixed;
    top: 5px;
    right: 30px;
    font-size: 14px;
    font-family:Georgia, 'Times New Roman', Times, serif
}

a{
    color: black;
}
.pagetitles{
display: flex;
height: 100px;
width: 100vw;
justify-content: space-evenly;
margin-top: 40px;
font-size: 15px;
font-family:Georgia, 'Times New Roman', Times, serif
}

.scrollmenu{
    width: 100vw;
    height: 350px;
    position: fixed;
    bottom: 70px;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.imagecard{
    height: 350px;
    float: none;
    display: inline-block;
}

::-webkit-scrollbar{
    display: none;
}