@font-face {
  font-family: "Signika";
  src: url("Signika-VariableFont_GRAD,wght.ttf");
}

html {
 font-family: "Signika";
 margin: 4px;
}

[class*="flex-"] {
    display: flex;
    gap: 16px;
}
 
body {
    background-image: url('springflowers.gif');
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.page-fill-body {
    justify-content: center;
    /* Centers content horizontally */
    align-items: center;
    box-sizing: border-box;
    height: 100vh;
    padding-bottom: 32px;

}

.nav-bar {
    width: 80vh;
    height: 32px;
    align-items: center;
    justify-content: center;
    align-content: center;
    font-size: medium;
    background-color: antiquewhite;
    color: aliceblue;
}

.main-container {
    height: 80vh;
    width: 80vh;
    background-color: antiquewhite;
    padding:12px;
}

a:link {
    color: black;
    style: none;
}