* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.construction-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

h1 {
    font-size: 48px;
    color: #ff6347;
    margin-bottom: 10px;
}

p {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.animation img {
    width: 300px;
    height: auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }
    
    p {
        font-size: 18px;
    }
    
    .animation img {
        width: 200px;
    }
}
