@charset "UTF-8";
@font-face {
  font-family: "blanch";
  src: url("site/font/blanch-caps-light.otf") format("truetype");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  font-weight: 550;
  vertical-align: top;
}
body {
  background: #fff;
  color: #666;
  display: grid;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
h1 {
  font-size: 60px;
  font-weight: 900;
  border-bottom: pink 3px solid;
  margin: 0 auto 30px;
  width: fit-content;
  text-align: center;
  font-family: "blanch", sans-serif;
}
.frame {
  width: 430px;
  padding: 15px;
  background-image: url(site/img/persona-frame.png);
  background-size: 430px auto;
  border-radius: 30px;
  margin: 0 auto 20px;
}
img {
  width: 400px;
  border-radius: 30px;
  margin: 0 auto;
  border: #fff 3px solid;
}

table {
  margin: 30px auto 50px;
  border-collapse: collapse;
}

tr {
  width: 650px;
}

tr :nth-child(odd) {
  background-color: #fde9eb;
}
th {
  width: 175px;
  border: pink 2px solid;
  text-align: right;
  padding: 10px 20px 10px 10px;
}

td {
  width: 400px;
  border: pink 2px solid;
  padding: 10px;
}

.button img {
  width: 25px;
  border: none;
  border-radius: 0;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0px auto 100px;
  width: 350px;
  height: 50px;
  background: #ccc;
  border-radius: 75px;
  font-size: 15px;
  font-weight: lighter;
  letter-spacing: 2px;
  transition: 1s box-shadow;
  transition: 1s border;
}

.button:hover {
  box-shadow: 0 5px 35px 0px rgba(169, 167, 167, 0.215);
  border: pink solid 5px;
  background: #fde9eb;
}

@media screen and (max-width: 767px) {
  body {
    background: #fff;
    color: #666;
    display: grid;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    line-height: 1.5;
  }
  h1 {
    border-bottom: 0px;
    margin: 0 auto;
  }
  .more {
    width: 300px;
    margin: 0 auto;
  }
  .frame {
    width: 300px;
  }
  img {
    width: 270px;
  }
  tr {
    width: 300px;
  }
  th {
    width: 100px;
  }
  td {
    width: 200px;
  }
}
