.main-button{
    display: inline-block;
    background-color: #BA1F33;
    box-shadow: 0.3vw 0.3vw 0px #000;
    padding: 0.9vw 1.8vw;
    margin-right: 0;
    transition: transform 100ms cubic-bezier(0.81, 0.8, 1, 2.76);
    font-size: 1.1vw;
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
}

.main-button:hover{
    transform: scale(1.08);
}

.main-button.-full {
    width: 100%;
}

.main-button.-full:hover{
    transform: scale(1.02);
}

.top-btn {
    position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	border-radius: 50%;
	background-color: #CEB02A;
	color: #ffffff;
	text-align: center;
    font-size: 1rem;
	opacity: 0;
	transition: 0.4s ease;
}

.top-btn:hover {
	box-shadow: 0 0 1rem #ffffff;
}