/* mystyle.css */
* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

p {
  font-family:athelas;
}

h1 {
    font-family:athelas;
    background-color:rgb(138, 140, 143);
    font-size:30pt;
    text-align:center;
}

body {
    background-color:rgb(215, 228, 194);
}


#thefirst {
    font-size:18pt;
    font-family:athelas;
    border:2px solid black;
    color:rgb(190, 30, 45);
}

/* Add a black background color to the top navigation */
.topnav {
  background-color:rgb(138, 140, 143);
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: center;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  color: white'
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
