@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Gloria Hallelujah', cursive;
    background-color: #A7D3F1;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-header, .main-footer {
    background-color: #FFD36E;
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.details-section {
    background-color: #FF9CEE;
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    text-align: center;
    transition: transform 0.3s ease;
}

.details-section:hover {
    transform: scale(1.05);
}

a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .details-section {
        width: 95%;
        margin: 20px;
    }
}