@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;
}

header {
    font-size: 2.75vw;
    margin-top: 30px;
}

img {
    width: 50vw;
}

div {
    font-size: 1.25vw;
    width: 85%;
    margin-bottom: 10px;
}

#logo {
    width: 300px;
}

footer {
    font-size: 1vw;
    border: 2px solid black;
    width: 99%;
    text-align: center;
}



