@import "SC-reset.css";

.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.merriweather {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
    display: flex;
    flex-flow: column;
    place-items: center;
    gap: 10px;
    height: 100vh;
}

h1 {
    font-size: 5vw;
}

nav {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
}

a {
    font-size: 2vw;
    text-decoration: none;
    color: black;
    border: 2px solid black;
    padding: 5px;
    padding-right: 20px;
    padding-left: 20px;
    box-shadow: 10px 10px;
}

hr {
  border: none;
  border-top: 3px double #333333;
  color: #333333;
  height: 5px;
  width: 100%;
}

div {
    margin-left: 5px;
    font-size: larger;
}

header {
    font-size: 2vw;
}

footer {
    font-size: 1vw;
    border: 2px solid black;
    width: 99%;
    text-align: center;
}