﻿@charset "utf-8";
body {
min-height: 60vh;
text-align: center;
}
.error-image {
margin: 20px 0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.error-image img {
display: block;
margin: auto;
max-width: 100%;
height: auto;
}
h1 {
color: #e74c3c;
margin-bottom: 15px;
font-size: 2.2rem;
}
p {
margin-bottom: 20px;
font-size: 1.1rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.home-btn {
display: inline-block;
background-color: #3498db;
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s;
margin-top: 10px;
}
.home-btn:hover {
background-color: #FFCC00;
}
.error-code {
font-size: 5rem;
font-weight: bold;
color: #e74c3c;
margin-bottom: 10px;
}
/* 小螢幕樣式 */
@media (max-width: 768px) {
h1 {
font-size: 1.8rem;
}
p {
font-size: 1rem;
}
}