body{
  background: #2a2a28;
  margin: 3rem 1.5rem;
}

.wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 8rem auto;
  gap: 1.5rem;
  max-width: 50rem;
  height: calc(100vh - 22rem);
  align-items: center;
  justify-content: center;
  margin: auto;
}

#logo {
  height: 100%;

}

.portal {
  grid-row: 2;
  background: #2a2a28;
  color: #f4f4f4;
  padding: .5rem;
  border-radius: .6rem;
  border: 1px solid #444;
  display: grid;
  grid-template-columns: 3.5rem auto;
  align-items: center;
  text-decoration: none;
  text-align: center;
}
.portal:hover{
  background: #f4f4f4;
  color: #2a2a28;
  font-weight: bold;
}

.portal img{
  width: 3rem;
  border-radius: .3rem;
  margin-right: .5rem;
}
