
body {
  margin: 0;
  background-color: #ff4848;
}

.page {
  overflow: hidden;
  height: 120vh;
  max-height: 120vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 120vh;
}

.logo-container {
  align-self: flex-start;
  padding: 10px;
}

.logo-img {
  height: 9vh;
}

.content-container {
  flex: 1;
  width: 100vw;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-container {
  width: 100%;
  margin-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1.5px solid black;
}

.footer-options {
  margin-top: 5px;
  display: flex;
  gap: 50px;
}

.logo-divider {
  height: 1vh;
  width: 100vw;
}

.logo-column-wrapper {
  position: absolute;
  top: -10vh;
  right: 0;
  overflow: hidden;
  width: 10vh;
  height: 130vh;
  max-height: 130vh;
}

#logo-column {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #ff4848;
}

.logo-column-element {
  height: 10vh;
  width: 10vh;
}

.archivo {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.font-bold {
  font-size: x-large;
  font-weight: 700;
}

.font-normal {
  font-size: xx-large;
  font-weight: 300;
}

.font-medium {
  font-size: medium;
  font-weight: 300;
}

.font-small {
  font-size: small;
  font-weight: 300;
}

.button-link {
  border-color: black;
  border-width: 2px;
  border-style: solid;
  border-radius: 10px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  all: unset;
  color: inherit;
  cursor: pointer;
}

p {
  padding-left: 0;
  margin-left: 0;
}

.link {
  text-decoration: underline;
}