* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter" sans-serif;
}
body,
html {
  background-color: hsl(0, 0%, 8%);
}
.m {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border: #2c2c2c;
}
.container {
  background-color: #2c2c2c;
  height: auto;
  width: auto;
  padding: 2rem;
  border-radius: 2rem;
}
.img img {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
}
.img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
#location {
  color: yellow;
  margin: 1.2rem;
  font-weight: 400;
}

.btn button {
  padding: 10px 0;
  margin: 10px 0;
  gap: 1rem;
  width: 70%;
  background-color: grey;
  color: white;
  font-weight: 700;
  font-family: "Inter" sans-serif;
  border-radius: 8px;
}
#qoutes {
  color: white;
  font-weight: 500;
  padding: 2rem;
}
.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and(max-width:530) {
  .m {
    width: 80vw;
  }
}
