html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', 'sans-serif';
    text-align: center;
}

main {
    width: 75vw;
    margin: 0 auto;
    margin-bottom: 30vw;
}

/* Typography */

h1,
h2,
h3,
h4,
h6,
p {
    margin: 0 auto;
}

h1 {
    margin: 40vw auto;
    font-size: 5vw;
    font-weight: bold;
    text-decoration: underline;
}

h2 {
    margin: 10vw auto;
    font-size: 4.5vw;
    text-decoration-line: underline;
    text-decoration-thickness: 0.25vw;
    text-underline-position: under;
}

h3 {
    margin: 2vw auto;
    font-size: 4vw;
}

h4 {
    margin: 1.5vw auto;
    font-size: 3vw;
}

p,
li {
    line-height: 5vw;
    padding-bottom: 2vw;
    font-size: 1.5vw;
}

a {
    padding: 2vw 5vw;
    margin: 2vw auto;
    display: grid;
    justify-items: center;
    align-items: center;
    font-size: 2vw;
    font-weight: bold;
    color: black;
    text-decoration: none;
    border-left: 0.3vw solid black;
    border-right: 0.3vw solid black;
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: black;
    color: white;
}

ul,
li {
    list-style: none;
}

/* Hero Section replace index.css */
.hero {
    width: 100%;
}

.hero__image {
    width: 100%;
    display: block;
}

/* Section */
section {
    margin: 8vw 0;
}

div {
    margin: 4vw 0;
}

/* Divider */

.divider--solid {
    margin: 2vw 0;
    border-top: 0.3vw solid black;
}

.divider--dotted {
    width: 60vw;
    margin: 2vw auto;
    border-bottom: 0.3vw dotted black;
}

/* Embedded Content */

.embed-content {
    width: 100%;
    height: 30vw;
    align-items: center;
    border: none;
}

.embed-content--footer {
    height: 100%;
}

.footer-wrapper {
    width: 100%;
    height: 38vw;
}

.top-image {
    width: 70vw;
    display: block;
    margin: auto auto 0 auto;
}