@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  transform: translate3d(0,0,0);
}

body {
  hyphens: auto;
  margin: 12px 0px;
  font-family: 'Lato', sans-serif;
  color: #000000;
  font-size: 18px;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f5f6fa;
}

a {
  color: #402080;
  font-weight: bold;
  text-decoration: underline;
}
a:visited {
  color: #802080
}
a:active {
  color: #802080
}
a:hover {
  color: #e01020
}
.titulo {
  position: relative;
  background-color: #00aaea; 
  min-width: 1024px;
  max-width: 1024px;
  margin: 20px auto;
  height: 100px;
  border-radius: 5px;
}
#logo_unadm,
#logo_UNAM {
  position: absolute;
  height: 80px;
  border-radius: 5px;
  background-color: white;
  padding: 5px;
  top: 10px;
}
#logo_UNAM {
  left: 10px;
}
#logo_unadm {
  right: 10px;
  padding: 0;
}

.container {
  min-height: 100vh;
  min-width: 1024px;
  max-width: 1024px;
  margin: 0 auto 20px auto;
  padding: 2em 2.5em 0 2.5em;
  background-color: #ececf9;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,0.1)
}
.bloque {
  display: flex;
  align-items: flex-start;
  padding: 1.5em 0; 
  border-top: 1px solid rgba(0,0,0,0.25);
}
.preview {
  display: block;
  width: 45%;
  margin-right: 5%;
}
.preview img {
  width: 100%;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
}
.desc {
  text-align: justify;
  width: 55%;
}
.desc h1 {
  margin-top: 0;
  margin-bottom: 2em;
  font-size: 130%;
}
.download {
  background-image: url('zip_icon.svg');
  background-size: cover;
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
  float: right;
}
.area {
  font-size: 200%;
  text-align: center;
  padding: 0.5em;
  cursor: pointer;
}
.oculto {
  display: none;
}