@charset "UTF-8";

:root {
  --background-color: #F5F7FA;
  --main-color: #4764c3;
  --secondary-color: #344ca0;
  --text-light-color:  rgba(255, 255, 255, 0.6);
  --text-selected-color:  #789fcc;
  --color1: #484a4d;
  --color2: #5c6167;
  --color3: #b3a8a6;
  --icon-color: #324467;
}

@font-face {
  font-family: 'Airlock Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Airlock Regular'), url('../fonts/AIRLOCK.woff') format('woff');
}

html, body {
  width: 100%;
  height: 100%;
}

.background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 13;
  overflow: hidden;
  background-color: var(--background-color);
  transition: background-color .3s ease-in-out,height 1ms linear 999s;
}

.social-icons {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 50px;
}

.social-icons a {
  margin: 0 10px;
  color: var(--icon-color);
  font-size: 32px;
}

.social-icons a:hover {
  color: #000;
}

.main {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ajusta la altura según tus necesidades */
}

.main h1 {
  font-family: 'Poppins';
  font-size: 86px;
  font-weight: 600;
  color: var(--icon-color);
  margin-bottom: 60px;
}

.main p {
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
  color: var(--icon-color);
}

.content {
  max-width: 60%;
}

.title {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 0px 20px;
  font-family: 'Airlock Regular';
  font-size: 23px;
  color: var(--icon-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.title span{
  font-family: 'Poppins';
  font-size: 22px;
  font-weight: 100;
}

