@charset "utf-8";

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.page-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #00A045;
    background-color: white;
    color: #00A045;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.page-top:focus {
    outline: none;
}

.page-top:focus-visible {
    outline: 3px solid #000;
    outline-offset: 1px;
}

@media screen and (min-width: 768px) {
    .page-top {
        width: 60px;
        height: 60px;
        font-size: 26px;
        border: 4px solid #00A045;
    }
}

@media screen and (min-width: 1200px) {
    .page-top {
        right: auto;
        left: calc(50% + 600px);
        transform: translateX(calc(-100% - 24px));
    }
}