@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap');

* {
    box-sizing: border-box;
}

a {
    color: green;
    text-decoration: none;
}

a:hover {
    color: lightgreen;
    text-decoration: none;
}

a:visited {
    color: green;
    text-decoration: none;
}

body {
    background-color: lightgray;
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
}

.content {
    margin: auto;
    max-width: 1080px;
    min-height: calc(100vh - 8rem);
}

.container {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 1rem;
    padding: .1rem 1rem .5rem 1rem;
}

footer {
    background-color: rgb(100, 100, 100);
    color: white;
    display: flex;
    font-family: monospace;
    justify-content: center;
    align-items: center;
    height: 3rem;
}

h1, h2 {
    font-family: 'Yuji Syuku', serif;
}

header {
    background-color: darkgreen;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    font-family: Arial, Helvetica, sans-serif
}

li span {
    position: relative;
    left: 5px;
  }

ul {
    list-style-type: '🌳';
}

@media screen and (max-width: 600px) {
    h1 {
        font-family: 'Yuji Syuku', serif;
        font-size: 6vw;
    };
    h2 {
        font-family: 'Yuji Syuku', serif;
        font-size: 5vw;
    }
}