@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

body {
    font-family: "Noto Sans", sans-serif;
}

a {
    text-decoration: none;
}

/* utils */
.pe-none {
    pointer-events: none;
}

.h-1 {
    height: 1rem;
}

.h-1pt5 {
    height: 1.5rem;
}

.h-2 {
    height: 2rem;
}

.mb-6 {
    margin-bottom: 6rem;
}
.mb-10 {
    margin-bottom: 10rem;
}
/* utils */

.fab-btn {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: box-shadow 0.4s ease;
    background: #007bff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.7rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.fab-btn span {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}
