/* Master styles*/

@import url("https://fonts.googleapis.com/css2?family=Redressed&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@200&display=swap");

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

html,
body {
  position: relative;
  height: 100%;
  margin: 0px;
  padding: 0px;
  background: rgb(255, 255, 255);
  line-height: 1.6;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

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);
}

/* canvas*/
.canvas h1 {
  font-family: "Overpass", cursive;
  font-size: 18pt;
  color: rgb(9, 9, 175);
  font-weight: 300;
}

.container .row1 {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.mainbody-items {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.subtitle {
  font-family: "Overpass";
  font-size: 10pt;
  font-weight: 600;
  color: blue;
  text-align: center;
}
/* -- Utilities styles -- */
.container {
  /*max-width: 1100px;*/
  margin: 0px auto;
  overflow: auto;
  padding: 10px 20px;
  overflow: hidden;
}

.card {
  position: relative;
  height: 260px;
  background-color: #ffffff;
  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%;
}
