body {
  background-color: #5f6e77;
  font-family: "Gluten", cursive;
  color: black;
}

header {
  background-color: #5f6e77;
  height: 120px;
}

/*NAVBAR*/

.logo {
  float: left;
  height: 100px;
  width: 100px;
  padding: 10px;
  border-radius: 45px;
    
}

ul {
  display: flex;
  justify-content: space-around;
  font-size: 20px;
  padding: 10px;
}

ul li {
  list-style: none;
}

ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

ul li a:hover {
  color: gold;
}

/*SECTION*/

section {
  padding: 50px;
  text-align: center;
}
/*WELCOME*/
#welcome {
  height: 500px;
  background-image: url("assets/yunBack1.png");
  background-size: contain;
  animation-name: colchis;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes colchis {
  0% {
    background-image: url("assets/yunBack1.png");
  }
  30% {
    background-image: url("assets/yunBack2.png");
  }
  60% {
    background-image: url("assets/yunBack3.png");
  }
}

h1 {
  font-size: 50px;
  color: whitesmoke;
  text-shadow: 2px 2px #bdc3c7;
}

h2 {
  font-size: 30px;
}

#welcomeText p {
  font-size: 25px;
}

#welcomeText a {
  text-decoration: none;
  color: black;
}
#welcomeText a:hover {
  color: gold;
}

/*FAMILY*/


.flex-container {
  display: flex;
  justify-content: space-around;
}

.flex-container div p {
  font-size: 25px;
  font-weight: bold;
}

/*ROYALASSET*/
.centerTable {
  margin: 0px auto;
}

th,
td {
  font-size: 25px;
}
/*cqui*/
#yunBio p{
    font-size: 20px;
}
#yunBio a {
    text-decoration: none;
    color: black;
}
#yunBio a:hover {
    color: gold;
}
/*FORM*/

div {
  padding: 50px;
  text-align: center;
}

form {
  margin: 0 auto;
  width: 300px;
  padding-top: 20px;
}
label {
  line-height: 2;
  font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
}
input[type="submit"] {
  background: darkcyan;
  color: darkblue;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}
