@import url("./global.css");

body {
  flex-direction: row;
  align-items: start;
  gap: 1rem;
}

section {
  background: #eee;
  border-radius: 1rem;
  padding: 1rem;
  color: #111;
}

h1 {
  margin-top: 0px;
}

.img-text {
  display: flex;
  flex-direction: column;
  align-items: center;

  & img {
    border-radius: 1rem;
    max-width: 300px;
    max-height: 300px;
  }
}

.color {
  & p {
    margin: 0px;
  }

  & div {
    width: 100px;
    height: 30px;
    margin-block: 1rem;
    border-radius: 0.5rem;
  }
}

.dark-blue {
  background-color: #2c3e50;
}

.red {
  background-color: #fc4349;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    max-width: 256px;
    border-radius: 1rem;
  }
}
