@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
@import "./popover.css";

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: whitesmoke;
  font-family: Poppins, 'Segoe UI', sans-serif;
}

p,
a,
h1,
h2,
h3 {
  color: rgb(90, 90, 90);
}

main {
  width: 70%;
  background-color: rgb(241, 241, 167);
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }
}

main>* {
  width: 70%;
  margin: 0 auto;
  padding: 40px 0;
}

#me {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#me>* {
  /* flex: 1 0 auto; */
  /* min-width: 230px; */
  vertical-align: middle;
  padding: 0 10px;
}

#me :not(#bio) {
  flex: 1 0 40%;
}

#me #bio {
  flex: 1 0 60%;
}

#name {
  font-size: 18pt;
  font-weight: 100;
  margin: 10px 0;
}

#name,
#social,
.center {
  text-align: center;
}

#photo {
  border-radius: 50%;
  width: 200px;
}

#social img {
  width: 32px;
}

.content-center {
  margin: 0 auto;
}

#skills-container {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

#skills-container>* {
  /* min-width: 300px; */
}

footer {
  height: 70px;
}