@charset 'UTF-8';
body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  font-family: 'Mulish', sans-serif;
}
.outer {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.top {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: 'white';
  border-color: 'black';
  border-radius: 30px;
  margin-bottom: 30px;
  font-weight: 100;
  padding: 30px;
  margin:30px;
  min-width: 334px;
  font-family: 'Mulish', sans-serif;
}

.logo {
  border-radius: revert;
  width: 250px;
}

.bios {
  margin: 30px;
  background-color: #B791EE;
  min-width: 334px;
  flex: 1;
  display:flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  justify-content: space-evenly;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 30px;
  @media (min-width: 525px) {
    flex-direction: row;
  }
}

.dancer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px;
  padding: 10px;
  justify-content: space-around;
  background-color: white;
  height: 80%;
  width: 350px;
  border-radius: 20px;
}

.bio {
  display: flex;
  width: 100%;
  padding: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.avatar {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  width: 100px;
  height: auto;
  border-radius: 50px;
}