* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 20px;
    background-image: url(EMPIRE/OIP.webp);
}

 .h1{
    width: 15%;
    margin: auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;

}

span{
    color: red;
    font-size: 50px;
    font-style: italic;

}
span:hover{
    text-decoration: underline;
}
.A{
    color: black;
    text-decoration: none;
        font-style: normal;

}
section{
padding-top: 20px;

}
section h1{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 25px;
    font-style: oblique;
    padding-left: 25px;
}
@media (max-width: 600px) {
    body {
        margin: 10px;
        background-size: contain;
    }

    .h1 {
        width: 90%;
        font-size: 28px;
        text-align: center;
    }

    span {
        font-size: 36px;
    }

    section {
        padding-top: 10px;
    }

    section h1 {
        font-size: 20px;
        padding-left: 10px;
        text-align: center;
    }
}

/* Tablets (600px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .h1 {
        width: 50%;
        font-size: 34px;
    }

    span {
        font-size: 42px;
    }

    section h1 {
        font-size: 22px;
    }
}

/* Large Screens (Desktops, 1025px and up) */
@media (min-width: 1025px) {
    .h1 {
        width: 15%;
    }
}
