﻿@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: center;
    /* Hình nền mặc định cho Desktop và Tablet */
    background-image: url('../image/findtheway.webp');
}

/* Media query cho Mobile (dưới 768px) */
@media (max-width: 767px) {
    body {
        background-image: url('../image/findtheway-mobile.webp');
    }
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px; /* Canh trái logo */
}
    .logo img{
        width: 80px;
        height: auto;
    }
    /* Điều chỉnh logo trên Desktop */
    @media (min-width: 768px) {
        .logo {
        top: 60px; /* Padding-top tăng thêm 10px */
        left: 60px; /* Padding-left tăng thêm 10px */
    }
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .content h1 {
        font-size: 54px;
        font-weight: bold;
        -webkit-text-stroke: 1px #fff; /* Viền trắng cho chữ trên Webkit */
        text-stroke: 1px #fff; /* Viền trắng cho các trình duyệt khác */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        -webkit-text-stroke: 1px #000; /* Viền trắng cho chữ */
        text-stroke: 1px #fff;
        line-height: 1.3; /* Khoảng cách giữa các dòng */
        margin-top: -165px; /* Kéo chữ lên cao hơn (tăng từ -40px lên -60px) */
    }

    @media (max-width: 480px){
        .content h1 {
            font-size: 39px;
        }
    }

.custom-button {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 680;
    color: #000;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 1);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    min-width: 105px;
}

    .custom-button:hover {
        background-color: #F6BB3A;
        color: #000;
        border-color: #000;
        box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 1);
    }
