@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap");

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1em;
}

p {
    text-align: justify;
    hyphens: auto;
}

.main-nav {
    position: absolute;
    left: 0;
    right: 0;
}

.button.is-link {
  background-color: #1A73E8;
  border-color: #1A73E8;
}

.button.is-light {
  background-color: rgb(212, 211, 211);
  color:white;
}

