*{

    font-family:'Roboto Slab', serif;

}

body{

    background-color: black;

}
#catalogButton {
    position: fixed; /* Fixed position */
    right: 10px; /* Distance from the right */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for exact centering */
    z-index: 1000; /* Ensure it's above other elements */
    
    /* Styling the button */
    padding: 10px 20px;
    background-color: orange; /* Orange background */
    color: rgb(8, 8, 121); /* Blue text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    border: none; /* No border */

    /* Responsive design for mobiles */
    @media (max-width: 600px) {
        font-size: 14px;
        padding: 8px 15px;
    }
}
