
body {
    font-family: Arial, sans-serif;
    background-color: #f6f6f6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #c0392b;
    text-align: center;
}

.dog-info {
    margin-bottom: 30px;
}

.dog-info img {
    max-width: 100%;
    border-radius: 8px;
    margin: 5px 5px 5px 5px; 
    width: 500px;
    height: 500px;
}

.dog-details {
    margin-top: 15px;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

button {
    margin-top: 20px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #219150;
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

/* Styles for screens smaller than 480px (typical mobile portrait size) */
@media only screen and (max-width: 480px) {
  .dog-info img {
    width: 200px; /* Image takes up the full width of the screen */
    height: 200px;;
  }
}
