/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 50px;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: auto;
}

h1 {
    color: #2c3e50;
}

.intro {
    font-size: 18px;
    color: #555;
    margin-top: 20px;
}

.solution {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 20px;
}

.start-button {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.charade {
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.enigme {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
}

input[type="file"] {
    margin-top: 20px;
}

img {
    width: 80%;
    border-radius: 10px;
    margin-top: 10px;
}