*,
*::before,
*::after {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    font-kerning: auto;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    text-align: center;
    background: url('https://wallpapers.com/images/hd/plain-light-blue-background-2000-x-1997-7zhb45hop2v9m4by.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
h1 {
    font-size: 5vmin;
    margin: 1em 0;
    color: #253b4b;
    text-shadow: #517498 .05em .05em 0;
}

h2 {
    font-size: 4vmin;
    color: rgb(5, 14, 143);
    line-height: 2.4;
}

h2 span {
    display: inline-block;
    background: #ffffff80;
    padding: .25em;
    border-bottom: 2px solid black;
    min-width: 1em;
    text-align: center;
}

h2 span + span {
    margin-left: .3em;
}

#output {
    width: 7em;
    font-family: monospace;
    font-size: 4vmin;
    margin: 1em auto;
    text-align: center;
    white-space: pre;
    letter-spacing: .125em;
    font-family: monospace;
    line-height: 1.2;

}

#guessed span {
    font-size: 4vmin;
    text-decoration: line-through;
    display: inline-block;
    padding: .25em;
}

#mensaje {
    margin-top: 1em;
    font-size: 3vmin;
    color: rgb(18, 184, 156);
    font-weight: bold;
    background-color: #06395cfa;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}

[type=text] {
    opacity: 0;
}
#signup {
    background: #4b7fb6;
    color: rgb(32, 46, 206);
    font-size: 20px;
    padding: 10px 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin: 40px auto 30px; 
    display: inline-block;
}

#signup:hover {
    background: rgb(4, 63, 146);
    color: black;
}
.boton {
    display: inline-block;
    margin-top: 5px;
    padding: 10px 10px;
    background: #360bcf;
    color: #287d97;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.boton:hover {
    background: #3d723d;
    color: #10476b;
    transform: scale(2.2);
    box-shadow: 0 0 15px #11ff00;
}
.home-link .home-icon {
    width: 50px !important;
    height: auto;
    }