:root {
  color-scheme: light dark;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  user-select: none;
  -webkit-user-select: none;
}

.light-mode {
  color-scheme: only light;
}

.dark-mode {
  color-scheme: only dark;
}

body {
  margin: 0;
}

#container {
  max-width: 1620px;
  background: light-dark(white, #282828);
  margin: auto;
}

header {
  color: black;
  background-size: cover;
  height: 100px;
  margin: 0px;
  border-bottom: 1px solid gray;
  background-image: url(/uploads/default/original/1X/bb3567142b4a41d1065eaa9d49c735e5ebf26e7e.png);
}

h1 {
  text-align: center;
  line-height: 100px;
  font-weight: normal;
  margin: 0;
}
.hero {
  font-size: large;
  margin: 10px 10px 0px 10px;
  padding-bottom: 0px;
  padding-top: 15px;
}

h2 {
  text-align: left;
}

article {
  padding: 12px;
  margin: 8px;
  max-height: 180px;
  min-height: 180px;
  overflow: auto;
  word-break: break-word;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: light-dark(#0550dc, #b3d9f8);
  color: light-dark(#0029a9, #e6ffff);
  font-size: small;
  font-weight: lighter;
}

article h2 {
  padding-top: 15px;
  font-size: medium;
}

article p {
  clear: both;
  margin-top: 30px;
  margin-block: 0;
}

a {
  text-decoration: none;
  color: light-dark(#0029a9, #e6ffff);
  display: block;
}

article:hover {
  box-shadow: 0px 4px 15px 0px rgb(95, 30, 190, 1);
}

article img {
  display: block;
  float: left;
  width: 60px;
  margin-right: 5px;
  margin-bottom: 10px;
}

.container {
  margin: 0px 10px;
  margin-bottom: 100px;
}

section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 360px));
  justify-content: space-evenly;
  overflow: hidden;
}

footer {
  border-top: 1px solid gray;
  margin: 10px 0px 0px 0px;
  padding-top: 10px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
}

footer a {
  display: inline;
}

.try-out__btn {
  display: none !important;
}
