
@font-face {
    font-family: Roboto;
}

/* General Styles */
body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #333;
}

.button-like {
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}