/* Import Numans font */
@import url('https://fonts.googleapis.com/css2?family=Numans&display=swap');

/* Apply background and global font */
body {
    margin: 0;
    padding: 0;
    font-family: 'Numans', sans-serif;
    background: url('images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#header .content {
    background: rgba(0, 0, 0, 0.5); /* Slightly transparent black */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#header .content h1 {
    font-size: 2.5rem;
    margin: 10px 0;
}

#header .content p {
    font-size: 1.2rem;
}

/* Style the image-box */
.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
}

/* Responsive rules */

/* For small screens (max-width: 600px) */
@media screen and (max-width: 600px) {
    .image-box {
        width: 150px;
        height: 150px;
    }

    #header .content h1 {
        font-size: 1.5rem;
    }

    #header .content p {
        font-size: 1rem;
    }
}

/* For tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    .image-box {
        width: 180px;
        height: 180px;
    }

    #header .content h1 {
        font-size: 2rem;
    }

    #header .content p {
        font-size: 1.2rem;
    }
}
