body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-image: url('banner.png'); /* Thay your-image.jpg bằng đường dẫn ảnh của bạn */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
/* Thêm lớp phủ mờ cho hình nền */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Điều chỉnh độ mờ ở đây (0.5 là 50%) */
    z-index: -1; /* Đặt lớp phủ dưới nội dung */
}

.container {
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.buttons .button {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button.drive {
    background-color: #1a73e8;
    color: white;
}

.button.mail {
    background-color: #d93025;
    color: white;
}

.button:hover {
    opacity: 0.8;
}