* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

a {
  text-decoration: none;
}

span {
  text-decoration: underline;
}

.help-header {
  background-color: #243479;
  width: 100%;
  height: 50px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-header-link {
  color: white;
}

.box-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.card-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 10px;
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
}

.card-wrapper:hover {
  transform: scale(1.07);
}

.card {
  width: 270px;
  height: 220px;
  display: grid;
  grid-template-areas:
    'card-icon card-header'
    'card-text card-text';
  grid-template-columns: 65px 1fr;
  grid-template-rows: 70px 120px;
  align-items: start;
  justify-items: stretch;
  justify-content: stretch;
  align-content: stretch;
  color: #4d4d4d;
  font-family: roboto;
  font-weight: 300;
}

.card-header {
  grid-area: card-header;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.card-header-title {
    font-weight: bold;
    font-size: 0.9rem;
}

.card-icon {
  grid-area: card-icon;
  width: 48px;
  height: 48px;
  margin: 10px 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-text {
  grid-area: card-text;
  overflow: hidden;
  margin: 10px 10px 5px;
  font-size: 1rem;
}

.card-meta {
    display: flex;
    justify-content: end;
    color: #909090;
    margin: 10px;
    font-size: 0.9rem;
}

.stackoverflow {
  width: 50px;
  height: 50px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/0753592c-3f0d-da52-df43-9b6d19b4ee50/?size=48');
}


.wikipedia {
  width: 50px;
  height: 50px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/55cc3e16-fd2e-4d7c-70a6-885a02664c59/?size=48');
}


.math-wiki {
  width: 50px;
  height: 50px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/218d0f0c-c538-6582-e2e0-7fb099ffab06/?size=48');
}


.git-docs {
  width: 50px;
  height: 50px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/50263ebf-1fa0-52d0-7fa3-2c0d6b9b0fe2/?size=48');
}


.react-docs {
  width: 50px;
  height: 50px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/d47e2bc8-2faa-370d-3895-089a326b3f62/?size=48');
}

.physics-by-wikipedia {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/aed88600-fdbd-65c3-9e62-e5ddc0791b66/?size=48');
}

.hardware-recom {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/9ff08478-e6d6-6768-b394-6d194172f4c4/?size=48');
}

.rust-docs {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/8c2cfeed-40f1-5b80-5857-74a53422f1b5/?size=48');
}


.w3school {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8000/favicon.ico');
}

.dic-wiki {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/c776f925-38c1-f4ff-135c-670f2bcac0b5/?size=48');
}

.cpic {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/dc378027-9b29-74a9-79ee-946979183839/?size=48');
}

.gitpic {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/50263ebf-1fa0-52d0-7fa3-2c0d6b9b0fe2/?size=48');
}

.stackpic {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/a384c44e-f3a7-fe0b-37ac-9dea66d2d857/?size=48');
}

.wordpers {
  width: 48px;
  height: 48px;
  background-image: url('http://185.141.107.246:8081/catalog/v2/illustration/2b2cf23f-17aa-ea1f-eb3f-3486b2cfa4c5/?size=48');
}

#header-1 {
  font-size: 2rem;
}

#we-wiki-link {
  font-size: 2rem;
  text-decoration: none;
}

.link-wrapper {
  border: 1px black solid;
  padding: 10px;
}


footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50%;
    width: 100%;
    position: sticky;
    bottom: 0;
    margin: 0;
}

.coffee-img {
    height: 50px;
    margin: auto;
}