@charset "utf-8";

*{
    padding: 0px;
    margin: 0px;
    font-family: "Times New Roman', Times, serif"; 
    box-sizing: border-box;
}


@font-face{
  font-family: 'diogenes';
  src: url(../TIPOGRAFIAS/DIOGENES.ttf);
  font-weight: normal;
  font-style: normal;
}


body {
    max-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    
}

.fondo {
    background-color: rgba(0, 0, 0, 1);
    color: #FFF;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    max-height: 100%;
}

/* Nav */
.nav {
    background-color: rgba(255, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 70px;
    box-shadow: 0px 5px 50px rgba(255, 0, 0, 1);     
}

.nav h1 {
    font-family: 'diogenes';
    font-size: 50px;
    padding: 10px;
}


@media screen and (max-width: 600px ){
    .nav h1 {
        font-size: 30px;
    }
    
}

/* Main - Estructura de cubos*/

.main {
    width: 100vw;
    display: flex;
    justify-content: center;
    margin: 5% auto;
}

.politica p {
    width: 98%;
    font-size: 24px;
    margin: 1% auto;
    padding: 10px;  
    text-align: justify;
}

@media screen and (max-width: 600px) {
    .politica p {
        font-size: 15px;
    }
    
}

.politica a {
    color: #FFF;
    text-decoration: none;
}


/* Boton volver */
.volver {
    color: black;
    text-decoration: none;
    background-color: rgba(245, 245, 245, 1);
    border: black 5px;
    border-radius: 10%;
    width: 60px;
    height: 30px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
  }

  .volver:hover {
    background-color: rgba(215, 215, 215, 1);
    width: 63px;
    height: 33px;
    transition: 0.5s;
  }