* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: black;
}

div.card {
  margin: 20%;
  width: 300px;
  height: 300px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

div.imageCover {
  width: 200px;
  height: 200px;
}

div.imageCover img {
  width: 100%;
  height: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  text-align: center;
}

section {
  height: 70vh;
  width: 100%;
  padding: 40px;
}

section div.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}

section div img {
  position: absolute;
  width: 500px;
  bottom: -6px;
  left: 32%;
}

section div.container div p {
  /* color: black; */
}

@media (max-width: 580px) {
  section div img {
    width: 300px;
  }
}

.text {
  width: 300px;
  background-color: aqua;
  margin: 30px;
  border-radius: 10px;
  padding: 10px;
}

.text-button {
  display: flex;
  flex-direction: column;
  width: 800px;
  padding: 40px;
}


.text-button div{
    width: 300px;
}

h2{
    font-size: 3em;
    letter-spacing: 40px;
}