/* Master styles*/

@import url("https://fonts.googleapis.com/css2?family=Redressed&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  margin: 0%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 204, 0, 1) 30%,
    rgba(255, 187, 17, 1) 40%
  );
  line-height: 1.6;
  z-index: -1;
}

a {
  text-decoration: none;
  color: #8a8a8a;
  font-weight: 800;
}

p {
  margin: 10px 0;
}

img {
  object-fit: cover;
}

/* -- navbar styles --*/

.navbar {
  height: 35px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgba(0, 0, 255, 70);
  font-size: 12pt;
  font-weight: 800;
}

.navbar nav {
  display: flex;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 300;
}

.navbar .flex {
  flex-grow: inherit;
  justify-content: space-between;
}

.brand {
  margin-left: auto;
  color: rgb(255, 174, 0);
}

.navbar a {
  height: 18px;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.5s;
  margin-right: 30px;
}

.navbar a {
  color: #8a8a8a;
  font-size: 0.6rem;
  text-decoration: none;
  transition: color 0.5s;
}

.navbar a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 90);
}

.navbar a:hover {
  color: rgba(255, 255, 255, 90);
}

/* Index showcase styles*/

.showcase {
  display: flex;
  flex-direction: column;
  height: 500px;
  width: 100%;
  justify-self: center;
}

.showcase h1 {
  font-family: "Redressed", cursive;
  font-size: 20pt;
  color: rgb(9, 9, 175);
  font-weight: 700;
}

.showcase .row1 {
  display: flex;
  flex-grow: 1;
  justify-self: center;
}

.showcase .row2 {
  display: flex;
  flex-direction: row;
  position: relative;
  top: 30px;
  gap: 200px;
}

.showcase .row3 {
  display: flex;
  overflow: visible;
  position: relative;
  top: -50px;
  left: -0px;
  margin-bottom: 600px;
}

/* -- Utilities styles -- */
.container {
  /* max-width: 1100px; */
  margin: 0px auto;
  overflow: auto;
  padding: 10px 20px;
  overflow: hidden;
}

.card1 {
  height: 140px;
  width: 160px;
  background-color: hsl(210, 70%, 70%);
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin: 20px;
}

.card2 {
  height: 160px;
  width: 140px;
  background-color: hsl(210, 70%, 70%);
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 10px;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
