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

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

/* Container Styling */
.container {
    text-align: center;
    padding: 20px;
}

/* Logo Styling */
.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

/* 404 Message Styling */
h1 {
    font-size: 6rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Button Styling */
.home-button {
    text-decoration: none;
    background-color: #ff6b6b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: #ff4a4a;
}