@font-face {
  font-family: 'Platini';      /* Nombre que asignas a la fuente */
  src: url('../assets/fonts/PlantinMTProBold.TTF') format('truetype');
  font-weight: bold;                       /* Peso normal de la fuente */
  font-style: bold;                        /* Estilo normal (sin cursiva) */
}

@font-face {
  font-family: 'Effra';      /* Nombre que asignas a la fuente */
  src: url('../assets/fonts/Effra_Std_Rg.ttf') format('truetype');  /* Ruta y formato de la fuente */
  font-weight: normal;                       /* Peso normal de la fuente */
  font-style: normal;                        /* Estilo normal (sin cursiva) */
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Platini', sans-serif !important; 
}


body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  background: #f9f9f6;
  font-family: 'Effra', sans-serif; 
}

@media screen and (max-width: 480px) {
    body {
        background: #ede8de;
    }
}
/* Content-1:Start */
.box {
  width: 350px;
  height: fit-content;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  background-color: #ede8de;
}

.box1 {
  margin-top: 10px;
}

.content {
  margin: 15px 2px;
}

.image img {
  height: auto;
  width: 120px;
  border-radius: 0%;

  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.level {
  font-size: 0.7em;
  background-color: rgb(164, 189, 183, 0.5);
  width: 50px;
  padding: 3px;
  border-radius: 5px;
  font-weight: bolder;
  letter-spacing: 1px;

  display: block;
  margin: 0px auto 10px;
}

.name {
  font-size: 1.25em;
  font-weight: bolder;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

.job_title {
  font-size: 0.65em;
  font-weight: bolder;
  color: gray;
  margin-top: 0px;
}

.job_discription {
  font-size: 0.7em;
  color: gray;
  margin: 10px 30px 20px;
}

.icons {
  margin-bottom: 10px;
  margin-top: 30px;
  font-size: 1.5em;
  display: flex;
  justify-content: space-around;
}

.icons  button {
  width: fit-content;
  height: fit-content;
  border: none;
  font-size: 1em;
  background:#ede8de;
  text-decoration:none;
}

.icons > button > a{
    text-decoration:none;
    color:#000;
}

ion-icon:hover {
  color: #f9f9f6;
  transition: 0.5s;
}

button, a.message {
  width: 130px;
  height: 40px;
  border-radius: 10px;
  font-weight: bolder;
}

a.message{
  text-decoration: none;
  color: #000;
}

.button {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  margin: 20px 30px 0px;
}

.button > div{
    width: 100%;
}

.button .message {
  background: #ede8de;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.button .message > ion-icon{
    padding-right: 5px;
}

.button .connect {
  background-color: #000;
  color: #ede8de;
  border: none;
}
button.connect:hover {
  letter-spacing: 1px;
  transition: 0.5s;
}
a.message:hover {
  letter-spacing: 1px;
  transition: 0.5s;
  background: #f9f9f6;
}
/* Content-1:End */

/* Content-2:Start */
.box2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.box2 img {
  width: 80px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 10px;
}

h5 {
  font-weight: bolder;
  font-size: 1em;
}

.row p {
  font-size: 0.8em;
}

.box2 .text {
  text-align: left;
}

.box2 .text .name {
  font-size: 1.1em;
}

.box2 .text .job_title {
  font-size: 0.6em;
  margin-bottom: 5px;
}

.box2 .text .job_discription {
  margin: 0px;
}

.box2 .text .about {
  font-size: 0.9em;
  font-weight: bolder;
}
/* Content-2:End */

/* Responsiveness:Start */
@media screen and (max-width: 480px) {
    .box{
        width: 100vw;
        border-radius: 0px;
    }
    .button{
        display: flex;
        flex-direction: column;
    }
    .button button{
        width: 250px;
    }
    button.connect{
        margin-top: 10px;
    }
    .content2{
        padding: 0px 20px;
    }
    .content2 img{
        width: 60px;
        height: 60px;
    }
    
    
}
/* Responsiveness:End */