﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.hoome {
    /* الصورة الافتراضية لشاشة الكمبيوتر */
    background-image: url('/Images/Syana3.png');
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* عندما يكون عرض الشاشة أقل من 900 بكسل (الموبايل) */
@media only screen and (max-width: 900px) {
    .hoome {
        background-image: url('/Images/Syana2.png');
    }
}

.content-box {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-family: sans-serif;
}
