html {
    font-family: Lato, sans-serif;
  }
  
  *,
  *::after,
  *::before {
    box-sizing: inherit;
  }
  
  body {
    box-sizing: border-box;
    margin: 0;
  }
  
  .navbar {
    max-width: 640px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 24px;
  }
  
  .navbar__brand {
    display: flex;
    align-items: center;
  }
  
  .navbar__logo {
    margin-right: 30px;
  }
  
  .navbar__navigation {
    display: flex;
    flex-direction: row;
    padding: 0;
    list-style: none;
    color: #5c6b70;
  }
  
  .navbar__navigation-item {
    margin-left: 50px;
  }
  
  .navbar__link {
    text-decoration: none;
    color: inherit;
  }
  
  .main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .form__input {
    width: 100%;
  }
  
  .form__label {
    display: block;
    margin-bottom: 10px;
  }
  
  .form__textarea {
    width: inherit;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    background-color: #f3f6f6;
    margin-bottom: 10px;
  }
  
  .form__submit {
    background-color: #3cd0ff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 30px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
  }
  
  .form__submit:hover {
    background-color: #18c1e1;
  }
  
  .entry {
    margin-top: 50px;
  }
  
  .entry__title {
    display: inline;
    font-size: 18px;
  }
  
  .entry__date {
    color: #5c6b70;
  }
  
  .entry__content {
    font-size: 16px;
    line-height: 150%;
  }
  
  .footer {
    background-color: #323f43;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 4px solid black;
    color: white;
    font-size: 12px;
  }
  
  .footer__content {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
  }
  
  .footer .left {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
  }
  
  .footer .right {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
  }
  
  .footer__column {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
  }
  
  .footer__item {
    margin-bottom: 5px;
    color: inherit;
    text-decoration: none;
  }
  
  .footer__item:hover {
    text-decoration: underline;
  }
  

.login, .register {
    width: 25rem;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* When the screen width hits 1200px, we once again increase the global font size, this time to 16px */
@media only screen and (max-width: 75em) {
  .login, .register {
    width: 25rem;
  }
}

.login h1, .register h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}

@media only screen and (max-width: 75em) {
  .login h1, .register h1 {
    text-align: center;
    color: #5b6574;
    font-size: 2rem;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #dee0e4;
}
}


.login .links, .register .links {
    display: flex;
    padding: 0 15px;
}

@media only screen and (max-width: 75em) {
  .login .links, .register .links {
    font-size: 2.5rem;
}
}

.login .links a, .register .links a {
    color: #adb2ba;
    text-decoration: none;
    display: inline-flex;
    padding: 0 10px 10px 10px;
    font-weight: bold;
}
.login .links a:hover, .register .links a:hover {
    color: #9da3ac;
}
.login .links a.active, .register .links a.active {
    border-bottom: 3px solid #003782;
    color: #003782;
}
.login form, .register form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.login form label, .register form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #003782;
    color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
    width: 310px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
}

@media only screen and (max-width: 75em) {
  .login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
font-size: 2rem;
}
}

.login form input[type="submit"], .register form input[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: #003782;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    color: #ffffff;
    transition: background-color 0.2s;
}

.login form a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #003782;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
  font-size: 13px;
}


@media only screen and (max-width: 75em) {
  .login form a {
    font-size: 2rem;
}
}

.login form a:hover {
  background-color: #2868c7;
}

@media only screen and (max-width: 75em) {
  .login form a:hover {
    background-color: #2868c7;
  }
}


@media only screen and (max-width: 75em) {
  .login form input[type="submit"], .register form input[type="submit"] {
    font-size: 2rem;
}
}

.login form input[type="submit"]:hover, .register form input[type="submit"]:hover {
    background-color: #2868c7;
    transition: background-color 0.2s;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

table.dataTable td {
  text-align: center !important;
  vertical-align: middle !important;
}