body, html {
    margin: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, lightyellow, #f9d423, #f6d822);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

header h1, header h2 {
    margin: 0.5em 0;
}

main {
    max-width: 600px;
}

#construction-img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 60px;
}

body::before, body::after {
    content: "";
    position: fixed;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: repeating-linear-gradient(45deg, black, black 10px, yellow 10px, yellow 20px);
    z-index: 1000;
}

body::before {
    top: 0;
}

body::after {
    bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .button {
        padding: 8px 16px;
    }
}
