@import url('https://use.fontawesome.com/releases/v5.15.3/css/all.css');

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.opciones form {
    margin: 5px;
    padding: 5px;
    text-align: center;
    background: #FFDBEB;
    
}

h1 {
    text-align: center;
}

body {
    background: white;
    color: dimgray;
}

header {
    background: #F5E9D9;
}

article {
    text-align: center;
    width: 200px;
    height: 280px;
    margin-right: 20px;
    background: #FFDBEB;
    border: solid #FFDBEB 2px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

a {
    text-decoration: none;
    color: dimgray;
}

.elements {
    margin: auto;
    width: 50%;
}

.elements img {
    padding: 10px;
    width: 80px;
    height: 80px;
}

.shortcuts {
    float: right;
    margin-top: 24px;
}

.shortcuts img {
    height: 30px;
    width: 30px;
}

.menu {
    float: center;
}

.list {
    text-align: center;
}

.list li {
    list-style-type: none;
    display: inline-block;
    background: transparent;
}

.list a {
    color: dimgray;
    display: block;
    padding: 10px;
}

.list a:hover {
    color: black;
}

.contents {
    width: 60%;
    margin: auto;
}

.contents h1 {
    padding-top: 60px;
    margin-bottom: 4px;
}

.contents li {
    list-style-type: none;
    display: inline-block;
}

.contents input {
    width: 90%;
    background: white;
    color: #FFDBEB;
    margin-top: 10px;
    padding: 5px;
    border: solid #FFDBEB 2px;
    border-radius: 16px;
}

.contents input:hover {
    cursor: pointer;
    background: #FFDBEB;
    color: white;
    border: solid white 2px;
}

.contents img {
    width: 200px;
    height: 200px;
}

.categories {
    width: 98%;
    height: 600px;
    border-collapse: collapse;
}

.categories td {
    text-align: center;
    border: solid #FFDBEB 2px;
    width: 33%;
}

.categories img {
    width: 50%;
    height: 50%;
}

.contenedor {
  width: 400px;
  margin: 80px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  animation: aparecer 0.5s ease-in-out;
}

.campo {
  margin: 10px 20px 10px 0px;
}

.contenedor label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contenedor input {
  width: 100%;
  padding: 8px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

table {
    margin: auto;
    padding: 5px;
    margin: 5px;
    text-align: center;
}

th {padding: 8px;
    border-top: 4px solid transparent;    border-bottom: 1px solid transparent;}

td { padding: 8px; border-bottom: 1px solid transparent; border-top: 1px solid transparent; }

.contenedor button {
  display: block;
  margin: 20px auto 0;
  padding: 8px 16px;
  border-radius: 20px;
  border: solid #FFDBEB 2px;
  background-color: #FFDBEB;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
}

.contenedor button:hover {
  background-color: #ffffff;
  color: #FFDBEB;
}

.botones {
  display: flex;
  justify-content: space-between;
}

.enlaces {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 20px 0; 
  font-size: 16px; 
}

.enlaces p {
  margin: 0 10px 0 0; 
}

.enlaces a {
  color: dimgray; 
  text-decoration: none; 
  transition: all 0.2s ease-in-out; 
}

.enlaces a:hover {
  color: black;
  text-decoration: underline;
}