@import url('https://fonts.googleapis.com/css?family=Raleway');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  position: relative;
}

.box1 {
  width: 13.5%;
  height: 5px;
  margin-top: 5px;
  vertical-align: top;
  display: inline-block;
  *display: inline;
  background-color: #000;
  zoom: 1;
  color:white;
  
}

button {
  background-color: red;
  color: white;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}
strong {
  font-size: 14px;
}

.stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0
}


.friends, .denied {
  position: absolute;
  color: #00b300;
  background: #34374C;
  padding: 10px;
  border-radius: 20px;
  top: 10px;
  left: -1000px;
  transition: .5s;
  cursor: pointer;
}
.friends span, .denied span {
  margin-left: 10px;
  padding: 5px 10px;
  background: #FFFFFF;
  border-radius: 50%;
}
.friends span:hover, .denied span:hover {
  background: #EE2B47;
}

.active {
  left: 5px;
}

.people {
  width: 370px;
  height: 100vh;
  background: #FFFFFF;
  padding: 50px 0;
}
.people .person {
  padding: 15px 5px;
  width: 100%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  background: #34374C;
  border-radius: 50px;
}
.people .person img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.people .person .info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: .8em;
}
.people .person .info .name {
  color: #00b300;
  font-weight: 700;
}
.people .person .info .name .msg {
  font-weight: 500;
}
.people .person .info .options {
  margin-top: 10px;
}
.people .person .info .options button {
  background: rgba(200, 200, 200, 0.5);
  border: none;
  height: 30px;
  width: 95px;
  border-radius: 20px;
  cursor: pointer;
  margin: 0 .2em;
  font-weight: 700;
  font-size: 1.12em;
}
.people .person .info .options button:hover {
  background: #00b300;
}

@media screen and (max-width: 400px) {
  .people {
    width: 300px;
    height: 100vh;
    background: #2C2E3E;
    padding: 50px 0;
  }
  .people .person {
    text-align: center;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #34374C;
    border-radius: 5px;
  }
  .people .person img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
  .people .person .info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: .8em;
  }
}
