<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(#081c45, transparent);
    height: 100vh;
    margin: 0;
    padding: 0;
}
header{
    color: aliceblue;
    padding: 1px;
    text-align: center;
    background-image: linear-gradient(to right, #081c45, transparent);
    position: fixed; 
    width: 100%; 
    z-index: 1;
}
main {
    padding-top: 60px;
}
nav .Hlogo{
    margin-left: 34%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(255, 255, 255);
    background-color: transparent;
    font-size: 18px;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
nav ul{
    list-style: none;
    padding: 0;
    text-align: left;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
#button{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: rgb(255, 255, 255);
    background-color: transparent;
    padding: 1px 40px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
}

#cart i{
    margin-left: 550px;
}
#button i {
    margin-right: 5px; 
}

#menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.717);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#button-content{
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#button-content a{
    display: block;
    text-decoration: none;
    color: white;
    padding: 12px 15px;
    border-radius: 20px;
    font-size: 25px;
    font-weight: 500;
    transition: 0.5s;
}
#button-content:hover a{
    opacity: 0;
}
#button-content a:hover{
    background-color: rgb(59, 45, 151);
    transform: scale(1.5);
    background: #081c45;
    opacity: 1;
}
#button-content a::after{
content: attr(data-text);
color: white;
font-size: 90px;
font-weight: 900;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
opacity: 0;
pointer-events: none;
letter-spacing: 5px;
transition: 0.5s;
}
#language img {
    width: 75px;
    height: 75px;
    padding: 0;
}
#button-content #language::after{
    transform: translate(-50%,-150%);
    font-family: "Amiri", serif;
    font-weight: 400;
    font-style: normal;
}
#button-content #home::after, #button-content #menu::after,
#button-content #contact::after{
    transform: translate(-50%,50%);
}
#button-content a:hover:after{
opacity: 0.5;
}

#close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}
#menu-overlay:target {
    display: flex;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2px;
    margin-top: 15px;
}

.footer-socials a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.footer-socials a:hover {
    color: #081c45;
}
.Hlogo img{
    width: 60px;
    height: 60px;
}
 

@media screen and (max-width: 768px) {
    nav {
        flex-direction: row; 
        align-items: center;
        justify-content: space-between; 
        padding: 10px; 
        position: relative;
        height: 80px;
    }

    .Hlogo {
        position: absolute;
        left: 50%; 
        transform: translateX(-50%); 
    }
    
    .Hlogo img {
        width: 80px;
        height: 80px;
    }


    #cart i {
        margin-left: auto; 
        font-size: 20px;
    }

    #button {
        font-size: 16px; 
        padding: 10px; 
    }
    main {
        padding-top: 90px;
    }
}


@media screen and (max-width: 480px) {
    nav {
        flex-direction: row; 
        align-items: center;
        justify-content: space-between; 
        position: relative;
        height: 80px;
    }

    .Hlogo {
        position: absolute;
        left: 50%; 
        transform: translateX(-50%); 
    }
    
    .Hlogo img {
        width: 80px;
        height: 80px;
    }

    #button {
        font-size: 14px; 
        padding: 8px; 
    }

    #cart i {
        margin-left: auto; 
        font-size: 18px;
    }
}

@media screen and (max-width: 1024px) {
    nav {
        flex-direction: row; 
        align-items: center;
        justify-content: space-between; 
        padding: 10px; 
    }

    nav .Hlogo {
        margin-left: 0; 
        font-size: 16px; 
    }

    #cart i {
        margin-left: auto; 
        font-size: 20px;
    }

    #button {
        font-size: 16px; 
        padding: 10px; /
    }
    main {
        padding-top: 90px;
    }
}
</pre></body></html>