*{
    font-family:'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

body{
    background-image: linear-gradient(30deg,rgba(250, 250, 250, 0),rgba(146, 222, 243, 0.611)), url('../recursos/picture/2b.svg');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.title{
    display: flex;
    justify-content: center;
    font-size: 2em;
    color:rgb(100, 237, 153);
    text-shadow:1px 1px 1px rgb(23, 18, 18);
}
.contenedor{

    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;

}

.btn_contenedor{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}



.btn_componente{
    font-size: 2em;
    padding: 15px;
    border-radius: 15px;
    border: none;
    background-color: rgba(177, 215, 191, 0.69);
    color: white;
    font-weight: 800;
    text-shadow: 1px 1px black;
    transition: 0.5s;
        box-shadow: -1px -1px 4px rgb(255, 255, 255);
}

.btn_componente:hover{
    transform: scale(1.2);
}

@media screen and (max-width: 600px) {
  .title {
    font-size: 1.5em;
    text-align: center;
    padding: 0 10px;
  }

  .btn_componente {
    font-size: 1.2em;
    width: 80%;
    text-align: center;
    width: 100%;
  }
}
