@import "https://fonts.googleapis.com/css2?family=Antonio:wght@600;700&family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&family=Roboto:wght@700;900&display=swap";
@import url("./about.css");
@import url("./header.css");
@import url("./footer.css");
@import url("./login.css");
@import url("./logout.css");
@import url("./errors.css");

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #093533;
    overflow-x: hidden;
}

.content {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    min-height: 0;
}

#scroll-bottom-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: #093533;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    background: #fdcf5b;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

#scroll-bottom-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#scroll-bottom-btn:hover {
    background: #ffe08a;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    #scroll-bottom-btn {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
        font-size: 21px;
    }
}