body {
    background-color: #C9C9EE;
}
.header-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
}
.alura-logo{
    width: 200px;
    height: 100px;
}
.titles_h1 {
    color: #1A569A;
    text-align: center;
    font-size: 400%;
    font-family: 'Permanent Marker', cursive;
    margin-top: 15px;
}

.container {
    max-width: 900px;
    margin: 150px auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.canvas-container {
    max-width: 1200px;
    max-height: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.canvas {
    width: 70%;
    height: 100%;
    border: 5px;
    border-color: #1F1D36;
    border-radius: 10px;
    background-color: #A2A3BB;
    margin: 40px;
}

.hangman {
    display: none;
}

.failed-word{
    width: 20%; 
    border-style: hidden;
    border-radius: 10px;
    background: #A2A3BB;
    text-align: center; 
    font-size: 30px;
    margin: 2%;
}

.underscore-container {
    max-width: 900px;
    max-height: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} 

.underscore {
    width: 100%;
    height: 20%; 
    border-style: hidden;
    border-radius: 10px;
    background: #A2A3BB;
    text-align: center; 
    font-size: 4em;
    padding: 2%;
    margin: 2%;
} 

.word-input {
    width: 100%;
    height: 20%; 
    border-style: hidden;
    border-radius: 10px;
    background: #A2A3BB;
    text-align: center; 
    font-size: 2em;
    padding: 2%;
    margin: 2%;
}

.button {
    margin: 5%;
    width: 32%;
    border-color: #1F1D36;
    border-radius: 6px;
    background-color: transparent;
    padding: 1em;
    font-family: 'Permanent Marker', cursive;
    font-size: 20px;
    color: #1F1D36;
    display: inline-block;
}

.button:hover {
    background-color: #1F1D36;
    color: #FBF9FF;
}

/*-------------------------------------footer-------------------------------------*/
.footer-container {
    background: linear-gradient(90deg, rgba(94,87,212,1) 0%, rgba(66,9,121,0.8225490879945728) 50%, rgba(96,0,255,0.5004202364539565) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
} 

.copyright{
    color:#000;
    font-size: 1em;
    font-family: 'Rubik', sans-serif;
    margin:20px;
}
