@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    font-style: normal;
    font-display: swap;
}

body {
    min-height: 100%;
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    color:  #ffffff;
    background-color: #0020C1;
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
  height: 100vh; /* 100% de la altura de la ventana gráfica */
  margin: 0;
  padding: 0;
    margin: 0 auto;
}
section figure {
    display: inline-block;
    width: 200px;
    height: 200px;

    margin: 50px auto;
}
section figure img{
    display: block;
    width: 100%;
    height: 100%;

}
section article{
    

    display: inline-block;
    width: auto;
    max-width: 600px;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
}
section button{
    width: 200px;
    height: 40px;
    margin: 50px auto;
    background-color: #00112F;
    border-style: none;
    border-radius: 12px;
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
}
