h1{
    font-size: 18px;
    padding: 30px 0 10px;
}
.font1{
    font-family:"Cinzel", serif;
    }

nav{
    display: flex;
    justify-content: space-around;
    position: relative;
    font-size: 0;
    line-height: 0;
    background: none !important;
    margin: 0 0 40px 0;
}
nav a{
    display: inline-block;
    vertical-align: top;
    width: 270px;
    height: 80px;
    font-size: 14px;
    line-height: 12px;
    border-width: 1px;
    border-style: solid;
    margin: 0 50px;
    padding: 13px 0 0 0;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
}
nav a:hover{
    text-decoration: none;
}
nav a:nth-child(1) span{
    color: #F5B4D0;
}
nav a span{
    font-size: 40px;
    line-height: 40px;
}
@media screen and (max-width:650px){
    h1{
        font-size: 12px;
        padding: 20px 0 0;
    }
    nav {
        margin: 0 0 10px 0;
        padding: 0 10px;
    }
    nav a {
        width: calc(50% - 30px);
        height: 60px;
        font-size: 11px;
        padding-top: 10px;
        margin: 0;
    }
    nav a span{
        font-size: 28px;
        line-height: 28px;
    }
}