body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(UOCG5409.PNG);
    /* box-shadow: 5px 5px 5px whitesmoke; */
    background-repeat: no-repeat;
    color: beige;
}

.hy{
    margin-left: 10px;
}

img{
    width: 300PX;
    height: 400PX;
    background-repeat: no-repeat;
}

h1{
    color: #333;
    margin-top: 10%;
    text-align: left;
    font-style: italic;
}

head{
    background-color: #222;
    color: white;
    text-align: center;
    padding: 2em 0;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 5%;
    background-color: #222;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 92%;
    min-height: 70px;
    
}

.logo{
    color: white;
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
}

.Menu{
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.Menu a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.Menu a:hover{
    color: red;
}

.navbar li{
    height: 50px;
}

#menu-toggle{
    display: none;
}

.menu-icon{
    display: none;
}

h3{
    text-align: left;
    color: darkred;
}

.rrgb{
    color: darkred;
    background-color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 26px;
}

.rrgb:hover{
    background-color: black;
    transform: scale(1.05);
    box-shadow: 0 0 15px red;
}

p{
    margin-left: 10px;
}

footer{
    background-color: black;
    color: white;
    padding: 40px 8% 20px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box{
    flex: 1;
    min-width: 200px;
}

.footer-box h3{
    margin-bottom: 15px;
}

.footer-box a{
    display: block;
    color: white;
    text-decoration: none;
    margin: 8px 0;
}

.footer-box a:hover{
    color:#222
}

footer-bottom{
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
}

@media (max-width: 768px){
    .menu-icon{
        display: block;
        color: white;
        font-size: 30px;
        cursor: pointer;
    }

    .Menu{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background-color: #222;
    }

    .Menu a{
        display: block;
        padding: 20px;
    }

    .Menu li{
        width: 100%;
        text-align: center;
    }

    #menu-toggle:checked ~ .Menu{
        display: flex;
    }
}