* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: lightcoral;
    padding-top: 70px;
}

.nav {
    background-color: rgba(255, 182, 193, 0.8);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 50px;
    height: 50px;
    background-image: url('rose.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 3px double black; /* Shortened border syntax */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}


.ul {
    list-style: none;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ulli {
    color: black;
    text-decoration: underline;
    font-weight: bold;
    font-size: 22px;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: grey;
    border-left: 20px solid blue;
    opacity: 0.6;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.closebtn {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    color: blue;
}

.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    color: black;
    z-index: 1000;
}

.box {
    height: 140px;
    width: 100%;
    border: 2px solid black;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color: white;
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: scale(1.05);
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.imgdiv img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    align-items: center;
    border-radius: 5px;
    border: 2px solid darkblue;
    margin: 10px;
    cursor: pointer;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 182, 193, 0.8);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    text-decoration: underline;
}

.grid-container {
    display: grid;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .box {
        width: 100%;
        height: 100px;
    }
}

@media (min-width: 769px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .box {
        width: 100%;
        height: 300px;
    }
}