/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	background-image: url('../img/dfbg/indexbg.jpg');
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.image-wrapper {
    width: 60%; /* ขนาดภาพ 60% ของหน้าจอ */
    margin: 0 auto;
    border: 10px solid white; /* ขอบสีขาวรอบภาพ */
	border-radius: 30px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); /* เงาใต้ภาพ */
}

.center-image {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-text {
    margin: 20px 0;
    font-size: 1.5em;
    color: #333;
}

.enter-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background-color: #007BFF; /* สามารถเปลี่ยนสีปุ่มได้ */
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.enter-button:hover {
    background-color: #0056b3; /* สีเมื่อเอาเมาส์ชี้ */
}
