body {
    margin: 0;
    font-family: sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1542831323-533a40c2da65?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTh8fGNvZGluZ3xlbnwwfHwwfHw%3D&w=1000&q=80');
}

.home-link {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack elements vertically on smaller screens */
    overflow: hidden; /* Prevent content from overflowing */
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .container {
        flex-direction: row; /* Display elements in a row on larger screens */
        height: 600px; /* Set a fixed height for larger screens */
    }
}

.left-side {
    flex: 1;
    background-color: #a7d1ab;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px; /* Add padding for better spacing */
}

.left-side img {
    width: 100%; /* Make the image responsive */
    max-width: 200px; /* Set a maximum width for the image */
    margin-bottom: 20px;
}

.left-side p {
    color: #fff;
    text-align: center; /* Center the text */
}

.left-side p a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    background-color: #808080;
    color: white;
}

.right-side {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-side h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-align: center; /* Center the heading */
}

.right-side p {
    color: #777;
    margin-bottom: 30px;
    text-align: center; /* Center the paragraph */
}

.right-side input {
    padding: 12px;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%; /* Make the input full width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

button[type="submit"] {
    background-color: #808080;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
}

button[type="submit"]:hover {
    background-color: #606060;
}

.social-icons {
    display: flex;
    justify-content: space-around;
    width: 150px;
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 30px;
}

.social-icons i {
    color: #fff;
}

/* Hide the separator */
.separator {
    display: none;
}

/* Tutorial styles */
.tutorial {
    padding: 20px;
    margin-top: 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.tutorial h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.tutorial p {
    color: #777;
}

@media screen and (max-width: 768px) {
  .content {
    padding: 1.5rem;
    margin: 3rem 1rem;
  }
  .header h1 {
    font-size: 1.5rem;
  }
  .analysis-block {
    padding: 1rem;
  }
  .editable {
    width: 100%;
    font-size: 0.85rem;
  }
  .analysis-block p {
    font-size: 0.9rem;
  }
}
