@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.nombre{
    background-color: #000066;
    color:white;
    width: 100%;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.todos{
    margin-top: 90px;
}
.Grupo{
    background-color: #72f3ff;
    width: 40%;
    border-radius: 10px;
    display:flex;
    flex-direction: column;
    margin: auto;
    margin-bottom: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.superior{
    font-size: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: "Roboto Condensed", sans-serif;
}
.inferior{
    width: 50%;
    margin: auto;
    padding-top: 10px;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    font-family: "Roboto Condensed", sans-serif;
}

.pulpa{
    font-size: 25px;
    margin-left: 5px;
}

.Minima{
    font-size: 40px;
    margin-left: 5px;
}

.BotonVolver{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

@media (max-width: 500px) {
    .Grupo{
       width: 90%;
    }
    .todos{
        margin-top: 100px;
    }
    .inferior{
        width: 70%;
    }
}