*{box-sizing: border-box;}

:root {
  --red: #fa6262;
  --blue: #cae9f2;
  --bg-gray: #fbfbfb;
  --yellow: #fffacc;
  --green: #e2efc7;
  --pink: #efc7c7;
  --font-color: #000;
  --blue-solid: #a1dbed;
  --green-solid: #d4eda1;
}

body {
  font-family: "Poppins", "sans-serif";
  font-weight: 700;
  width: 100vw;
  height: 100vh;
  margin: 0;
}

p {
  font-family: "Poppins", "sans-serif";
  font-weight: 400;
}

header {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
  padding-left: 40px;
 
}

#logo {
  color: var(--red);
}

a {
  color: #000;
  text-decoration: none;
}

.aboutContact {
  display: flex;
  gap: 20px;
  align-items: center;
}

main {
  display: flex;
  gap: 30px;
  
}

.descriptionBoard {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  width: 40%;
  order: 1;
}

.button {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}

#learnMore {
  display: flex;
  position: relative;
  background-color: var(--blue);
  border-radius: 10px;
  width: 175px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

#blueArrow {
  height: 40px;
  width: 40px;
  border-radius:10px;
  background-color: var(--blue-solid);
}

#contactUs {
  display: flex;
  position: relative;
  background-color: var(--green);
  border-radius: 10px;
  width: 175px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.cardBoard {
  display: flex;
  flex-direction: row;
  width: 60%;
  flex-wrap: wrap;
  padding-left: 30px;
  align-items: center;
  gap: 30px;
  
}

.cards {
  display: flex;
  flex-direction: column;
  width:calc(50% - 30px);
  height: 300px;
  box-shadow: 5px 5px 5px lightgray;
  border-radius: 10px;
  background-color: var(--bg-gray);
  padding-left: 20px;
  position: relative;
}

.descriptor {
  display: flex;
  gap: 10px;
  border-radius: 10px;
}

.gothenburg {
  display: flex;
  width: 125px;
  justify-content: center;
  background-color: var(--yellow);
  border-radius: 5px;
}
#money {
  display: flex;
  width: 75px;
  justify-content: center;
  background-color: var(--red);
  border-radius: 5px;
}

#animals, #jobs {
  display: flex;
  width: 75px;
  justify-content: center;
  background-color: var(--green);
  border-radius: 5px;
}

#office {
  display: flex;
  width: 75px;
  justify-content: center;
  background-color: var(--blue);
  border-radius: 5px;
}

.redBox {
  display: flex;
  position: absolute;
  right: 0;
  top: 260px;
  width: 40px;
  height: 40px;
  border-radius: 0px 0px 15px;
  background-color: var(--red);
  justify-content: center;
  align-items: center;
}

