html {
    font-family: "CircularPro","Noto Sans JP",Arial,sans-serif;
}
body {
    background: #006cb7;
    color: white;
    margin: 0;
}

header {
    background: #ffcf00;
    text-align: center;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img.logo {
    width: 20em;
}

img.hero {
    width: 100vw;
}

div.title-container {
    position: inherit;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;	
}
p.title, p.subtitle {
    font-weight: 700;
    text-transform: uppercase;
    background-color: inherit;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-bottom: 0.5em;
    min-height: 50px;
    font-size: 70px;
    line-height: 1.1;
}
p.subtitle {
    font-size: 4vw;
    padding: 5px;
}

div.parks {
    display: grid;
    flex-direction: row;
}

a.park {
    background: #ffcf00;
    color: #fff;
    flex-grow: 1;
    flex-shrink: 1;
    border-radius: 20px;
    text-align: center;
    padding: 4em;
    text-decoration:none;
    margin: 30px;
    white-space: nowrap;
}
div.park-name {
    font-weight: 600;
    font-size: 50px;
}

div.park-description {
    font-size: 35px;
    white-space: initial; 
}

.footer-bottom-description {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 0px;
}

footer.footer {
    padding: 58px;
    background-color: #333;
    color: #fff;
    font-size: 25px;
    line-height: 1.4em;
}