⬆
.tacktobop {
color: #880424;
width: 5vw;
height: 5vw;
background-color: white;
border-radius: 50%;
border: 5px solid #880424;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
box-shadow: 2px 2px 10px black;
font-size: 3em;
position: fixed;
right: 2vw;
bottom: 2vw;
transition: all .5s ease;
z-index: 9000;
}
.tacktobop:hover {
transform: scale(1.2);
cursor: pointer;
}