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

/* Body and overall styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container for all elements */
.container {
    text-align: center;
    position: relative;
}

/* Logo styling */
.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Error code styling */
.error-code {
    font-size: 80px;
    font-weight: bold;
    color: #333;
}

/* Error message styling */
.error-message {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Cloudflare logo and link styling */
.cloudflare-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.cloudflare-logo {
    width: 100px;
    height: auto;
}