* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #fff;
    width: 100%;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

.results-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px;
}

.result-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: justify;
    width: 500px;
    font-size: 0.8em;
    transition: transform 1s ease, box-shadow 0.3s ease, border 0.3s ease, width 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    border: 4px solid #000; 
    box-shadow: 0px 8px 15px  rgba(0, 0, 0, 0.3); 
}


.result-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.result-card p {
    font-size: 1.1em;
    color: #000000;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    width: 100%;
}
