/*
--rich-black: #0e131fff;
--delft-blue: #38405fff;
--english-violet: #59546cff;
--cadet-gray: #a0a7aeff;
--white: #ffffffff;
*/
// <weight>: Use a value from 400 to 900
// <uniquifier>: Use a unique and descriptive class name

.gabarito-<uniquifier> {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
    background-color: #0e131fff;
    margin: 0;
    font-family: "Gabarito", sans-serif;
    padding-top: 50px;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #38405fff;
    position: fixed;
    top: 0;
    width: 100%;
}

.left {
    float: left;
}

.navelem:hover {
    background-color: #1D2339;
}

.right {
    float: right;
}
li {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

h1, p {
    color: white;
}

.light-blue-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: flex-start;
    align-items: flex-start;
}

.light-blue-box {
    width: 200px;
    height: 150px;
    background-color: #3a74a2;
    border-radius: 8px;
}

.light-blue-box.small {
    height: 120px;
}

.sort-buttons-container {
  text-align: center;
  margin-bottom: 20px;
}

.sort-button {
  background-color: #38405f; /* delft-blue */
  color: #ffffff; /* white */
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  margin: 0 10px;
  font-size: 16px;
  font-family: "Gabarito", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s;
}

.sort-button:hover {
  background-color: #59546c; /* english-violet */
}




