@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600&display=swap');


body{
    margin-left: 20px;
    margin-right: 20px;
    font-family: "Comfortaa", sans-serif;
    background: #ffffff;
}
.backBar {
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    position: fixed;
    display: flex;
    align-items: center;
    background: rgba(239, 239, 239, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.backBtn {
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.backBtn:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    color: #000000;
    transform: scale(1.05);
}