html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
     background: rgb(194, 182, 175, 0.9);
    border: solid 2px #654E3F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #654E3F;
    border-right: 3px solid #654E3F;
    transform: translateY(20%) rotate(-45deg);
}

@media screen and (max-width: 430px) {
	.pagetop {
		display: none;
	}
	.pagetop__arrow {
		display: none;
	}
}