body {
    background-image: url(images/background-image.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(89, 171, 226, 0.801); 
    z-index: -1; 
}

.content {
    position: relative;
    z-index: 1; 
    padding: 20px; 
}

header {
    color: #1e255c;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 3rem;
    margin: 0;
    padding-bottom: 20px;
}

header h2 {
    font-size: 1.25rem;
    margin-left: 200px;
    margin-right: 200px;
}

main {
    padding: 20px 300px;
    max-width: 600px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    background-color: #FDFADA;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.question {
    margin-bottom: 20px;
    color: #1e255c;
}

.question legend {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.question label {
    display: block;
    margin-bottom: 5px;
}

button {
    display: block;
    width: 25%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    background-color: #8B0000;
    color: #FDFADA;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

#results {
    display: none; 
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: #FDFADA;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #1e255c;
}

.breed {
    margin-bottom: 20px;
    text-align: center;
}

.breed img {
    max-width: 200px;
    height: auto;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 4 8px rgba(0, 0, 0, 0.2);
}

.breed h3 {
    margin: 10px 0 5px;
}

.breed p {
    margin: 0;
}
