@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* General */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu Mono", monospace;
    color: #204e48;
    scroll-behavior: smooth;
    background-color: #b9ddd7;
}

.green {
    background-color: rgb(12, 238, 12);
}

.yellow {
    background-color: yellow;
}

.link__no__style {
    color: inherit;
    text-decoration: none;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background-color: #204e48;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 25px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease;
}

#backToTop:hover {
    background-color: #316962;
}

a {
    text-decoration: none;
    color: inherit !important;
}

@media (max-height: 800px) {
    #root > div {
        padding: 50px 0;
    }
}

@media (max-height: 700px) {
    #root > div {
        padding: 50px 0;
    }
}