*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: cursive;
    background-color: #98e9d0;
    font-size: 14px;
    width: 100%;
}
.contenedor{
    display: flex;
    flex-wrap: wrap;
}
header{
    margin-top: 2%;
}
header .titulo{
display: inline;
position: relative;
left: -40px;
top: -10px;
}

.inText{
    border: 1px solid black;
    width: 60%;
    margin-left: 5%;
    height: auto;
    border-radius: 20px;
    margin-top: 2%;
    padding: 1%;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}
.rules ul li{
    list-style: none;
}
#area{
    width: 100%;
    max-width: 100%;
    max-height: 250px;
    height: 250px;
    background: rgb(255, 255, 255, 20%);
    margin-top: 1%;
    resize: none;
    font-size: 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.outText{
    border: 1px solid black;
    width: 25%;
    margin-right: 5%;
    margin-left: 5%;
    height: auto;
    background: rgb(255, 255, 255,50%);
    border-radius: 20px;
    padding: 1%;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}
#encriptado{
    text-align: center;
    display: none;
}
#area1{
    width: 100%;
    max-width: 100%;
    height: 300px;
    max-height: 300px;
    display: none;
    resize: none;
    opacity: 25%;
    font-size: 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.outText img{
    width: 100%;
}
#notfound{
    text-align: center;
    font-size: 20px;
}
.botones{
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
    flex-flow: wrap;
}
.btn1, .btn2{
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    border-radius: 10px;
    border: 2px solid black;
    width: auto;
    cursor: pointer;
}
#btn3{
    margin-top: 2%;
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: none;
    font-size: 24px;
    border-radius: 10px;
    border: 2px solid black;
    width: 100%;
    cursor: pointer;
}
.btn1:active,.btn2:active{
    box-shadow: 2px 2px 5px #fc894d;
    transform: scale(1.01);
}
#btn3:active{
    box-shadow: 2px 2px 5px #fc894d;
    transform: scale(1.01);
}
footer{
    background: lightgray;
    margin: 2%;
    border-radius: 20px;
    height: auto;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    }
.redes{
    display: flex;
    justify-content: center;
    }
#github, #linkedln{
    width: 50px;
    margin: 5px;
}
    @media only screen and (max-width: 720px) {
        body {
          background-color: lightblue;
          font-size: 16px;
        }
        header .titulo{
            font-size: 16px;
            
            }
        .contenedor{
            flex-direction: column;
            align-items: center;
        }
        .inText{
            width: 80%;
        }
        .botones{
            display: flex;
            flex-direction: column;
        }
        .btn2{
            margin-top: 1%;
        }
        .outText{
            width: 80%;
            margin-top: 2%;
            margin-right: 1%;
        }
        .redes{
            display: flex;
        }
      }