* {
  box-sizing: border-box;
  font-family: "Trirong", serif;
}

body {
  //font-family: Arial, Helvetica, sans-serif;
  
  font-family: "Sofia", sans-serif;
}

/* Style the header */
.header {
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
  font-size: 35px;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
  text-align: center
}

/* Create three equal columns that sits next to each other */
.column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px;
  height: 300px;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #dbeeff;
  overflow: hidden;
}

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

/* 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 {
  //background-color: #04AA6D;
  color: black;
}

.fimg {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: contain;
}

h3 { color: #b9c3ff; }

button { border-radius: 20pt;
         border: none;
         background: #dbeeff;;
         color: blue }

