@import url('https://unpkg.com/ress/dist/ress.min.css');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');
/* font */
body{
    font-size: 16px;
    font-family: "Kiwi Maru", serif;
    font-weight: 300;
    font-style: normal;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: ivory;
}
h1{
    font-size: 2rem;
 }

h2{
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
th, td{
    text-align: center;
    font-weight: 300;
    background-color: white;
    border-bottom: black 1px solid;
    padding: 0.5rem 0.5rem;
}

footer{
    max-width: 800px;
    margin: auto;
}

.align-center{
    text-align: center;
}

.logo{
    width: 200px;
}

.main-nav{
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1rem;
    list-style: none;
}

.page-title{
    font-size: 2rem;
    font-weight: 300;
    color: white;
    text-align: center;
    margin-top: 2rem;
    padding-top: 3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    /* background-color: darkgreen; */
    background-image: url(../images/bg.jpg);
    background-position: center;
    height: 500px;
}

.wrapper{
    max-width: 800px;
    margin: auto;
}

.clinicmap{
    text-align: center;
}

.timetable, .addrestable{
    padding: 1rem 0;
    font-size: 1rem;
    margin-right:auto;
    margin-left:auto;
    border-spacing: 0;
}

@media(min-width:800px){
    .page-title{
        font-size: 3rem;
        padding-top: 2rem;
    }
    .page-header{
        display: flex;
        justify-content: space-between;
    }
    footer{
        display: flex;
        justify-content: space-between;
    }
    .timetable, .addrestable{
        margin: 0;
    }
}