body {
  margin: 0;
  padding: 0;
  background: #eee;
  color: #215878;
  font-family: "Montserrat", sans-serif;
}
#container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
}
#header {
  display: flex;
  flex-direction: column;
  padding: 0px 30px;
  margin: 30px 0 10px 0;
  width: 70vw;
}
#header::after {
  content: "";
}
#plugin-content {
  width: 70vw;
  padding: 0px 10px;
  margin: 10px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 5px solid #215878;
}
.description {
  width: 70vw;
}
.description h1 {
  font-weight: bold;
}
.description p {
  font-size: 18px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px;
  padding: 10px;
  text-align: center;
  position: relative;
}
.cogIcon {
  position: absolute;
  left: -18px;
  top: 10px;
  background: #eee;
  padding: 5px 0;
}
.cogIcon i {
  font-size: 30px;
  color: #215878;
}
.wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: #313131;
  display: inline-block;
  margin: 5px 0;
}
.wrapper p {
  font-size: 18px;
  font-weight: 400;
  margin: 5px 15px;
}
.code {
  width: 100%;
  margin: 10px auto;
  border-radius: 15px;
  overflow: auto;
  text-align: left;
  font-size: 15px;
  color: #fff;
  background: #313131;
}
#gitLogo {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #313131;
  min-width: 20px;
  height: 20px;
  z-index: 1;
}
#gitLogo i {
  font-size: 20px;
  color: #215878;
  cursor: pointer;
}
#gitLogo i:hover {
  color: #313131;
}
