/* Our default values set as CSS variables */
:root {
  --color-bg: #f7f7f7;
  --color-text-main: #555555;
  --color-primary: #FFFFFF;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "Futura Light font";
  --font-family-header: "Futura Light font";
}

/* Basic page style resets */
* {
  box-sizing: border-box;
}
[hidden] { 
  display: none !important;
}

/* Import fonts */
@font-face {
  font-family: Futura Light font;
  src: url("/Futura Light font.ttf ")
    format("opentype");
}


body {
    background-image: url('/fondo-escher-1600px.jpg');
    color: #f7f7f7;
}



/* Navigation grid */
.footer {
  display: none
}


body {
  font-family: Futura Light font;
  background-color: var(--color-bg);
background-repeat: repeat;
}

/* Page structure */
.wrapper {
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 1rem;
}
.content {
  display: flex;
  flex-direction: column;
 align-items: center;
}

.title {
  display: none;
  
}

.isologo {
  position: relative;
  max-width: 80%;
  max-height: var(--image-max-width);
  margin-top: var(--image-margin);
}




.float-container {
    position: relative;
    width: 100%;
    left: 120px;
    display: flex;
    justify-content: 10px
}

.float-child {
  width: 45%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.float-child-dots {
  width: 5%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


a:link { text-decoration: none; color: #555555; }

a:visited { color: #555555; }

a:hover { color: #00F4FF; }

a:active { color: #555555; } 



.description {
  text-align: right;
  max-width: 100%;
  color: #555555;
  font-size: 38px;
    
}


  
.actions {
  color: #555555;
  font-size: 38px;
  text-align: left;
}



.dots {
text-align: center;
  color: #555555;
  font-size: 22px;
}