
body {
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    margin: 0;
}

header {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  
  
  background-color: rgb(255, 255, 255);
  
}


header img {
  width: 30px;
  height: 30px;
  margin-right: 70px;
  transition: 1s;
}

header img:hover {
  transition: 1s;
  transform: scale(1.2);
}


.cap {
  margin-right: 700px;
}

main {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;

}

.dap {
  position: relative;
  bottom: 40px;
  color: rgb(71, 71, 71);
}

.dep {
  margin-top: -30px;
  font-size: 13px;
  color: gray;
}

button {
  width: 180px;
  height: 35px;
  margin: 40px;
  background-color: rgb(44, 130, 230);
  border-radius: 5px;
  border: 0px solid;
  color: white;
  transition: 2s;
  cursor: pointer;
}

button:hover {
  transition: 2s;
  transform: scale(1.1);
}


a {
  text-decoration: none;
  color: white;
}

#content {
  display: flex;
  gap: 20px;
}

#content img {
  width: 50px;
}

#content div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: white;
  width: 200px;
  height: 200px;
}


.bap {
  background-color: rgb(59, 216, 208);
  transition: 1s;
}

 .bap:hover {
  transition: 1s;
  transform: scale(1.07);
}

.bep {
  background-color: orange;
  transition: 1s;
}

.bep:hover {
  transition: 1s;
  transform: scale(1.07);
}

.bip {
  background-color: blueviolet;
  transition: 1s;
}

.bip:hover {
  transition: 1s;
  transform: scale(1.07);
}

#container {
  display: flex;
  font-size: 16px;
  color: rgb(83, 83, 83);
  margin: 10px;
  gap: 20px;
  transition: 2s;
}


.bop {
   transition: 1s;
   cursor: pointer;
}


@media (max-width: 768px) {
  body {
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: auto;
  }

  header {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 40px;
   
  }

  header img {
    margin-right: 0px;
  }
   
 .cap {
    margin-right: 0;
  }

  main {
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .dap {
    max-width: 200px;
  }

  #content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
      height: 90%;
  }

    #content div {
        width: 250px;
        height: 250px;
    }

  #container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  }
}

.bop:hover {
   transition: 1s;
  transform: scale(1.1);
  color: rgb(42, 131, 233);
}

/*Para que se vea genial en movil*/










