html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F4F0;
}

.top {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 140px;
  background-color: #AA9D81;
  text-align: center;
  line-height: 140px;
  font-size: 50px;
  color: #fff;
}

.icon {
  font-size: 25px;
  margin-right: 2.5vw;
}

.event_title {
  margin-top: 2.5vw;
  font-size: 25px;
}

.event_top {
  margin-left: 10vw;
  margin-top: 3vw;
  margin-bottom: 2.5vw;
}
/*
.event_intro {
  width: 80vw;
  margin-top: 2vw;
  line-height: 4vw;
  padding-left: 2vw;
  font-size: 1.8vw;
}
*/

.one_event {
  display: flex;
  margin-bottom: 30px;
}

.pic {
  width: 320px;
  height: 240px;
  margin: 0;
  border-radius: 20px;
  padding: 0;
  border: solid 10px #AA9D81;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  transition: 0.4s;
}
.pic:hover {
  width: 328px;
  height: 246px;
}

.name {
  font-size: 20px;
  padding: 0;
  width: 240px;
  height: 40px;
  line-height: 40px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #C9C9C5;
}

.PicAndName {
  display: inline-block;
  margin-left: 10vw;
}

.intro {
  display: inline-block;
  width: 50vw;
  margin-left: 5vw;
  line-height: 30px;
  font-size: 18px;
  margin-top: 0;
}
@media only screen and (max-width: 800px){
  .intro{
    margin: 0;
    width: 66vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .one_event{
    display: block;
    margin-top: 20px;
    padding: 0;
  }
  .pic{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .PicAndName{
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

}