html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  *, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    }

body {
    background-color: rgba(239,223,194,255);
    margin: 0;
    width: 100vw;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    color: black;
    border-bottom: 1px solid black;
}

p {
    color: black;
}

a {
    margin: 4px;
}

.center {
    text-align: center;
}

.front_page_image{
    margin-top: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.navbar{
    overflow: hidden;
    background-color: #454038;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar a {
    /* display: block; */
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 14pt;
}
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.grid-container {
    display: grid;
  }

  