
.whitespace {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down-button {
    padding: 16px 48px 16px 32px;
    border-radius: 32px;
    /*background: rgba(0, 0, 0, 0.2);*/
    /*box-shadow: rgba(0, 0, 0, 0.2) 0 0 4px;*/
    /*filter: brightness(50%);*/
    transition: opacity 1s;
    opacity: 0;
    position: fixed;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    color: white;
    margin-top: 213px;
}

.chevron-down-wrapper {
    margin-left: 24px;
    position: relative;
}

.chevron-down {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb04 2s infinite;
    animation: sdb04 2s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb04 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
    20% {
        -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    }
    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}
@keyframes sdb04 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }
    20% {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    40% {
        transform: rotate(-45deg) translate(0, 0);
    }
}
@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(135deg) translate(0, 0);
    }
    20% {
        -webkit-transform: rotate(135deg) translate(-5px, 5px);
    }
    40% {
        -webkit-transform: rotate(135deg) translate(0, 0);
    }
}
@keyframes sdb05 {
    0% {
        transform: rotate(135deg) translate(0, 0);
    }
    20% {
        transform: rotate(135deg) translate(-5px, 5px);
    }
    40% {
        transform: rotate(135deg) translate(0, 0);
    }
}



.scroll-top-button {
    padding: 16px 48px 16px 32px;
    border-radius: 32px;
    transition: opacity 1s;
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    color: white;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10;
    opacity: 0;
}

.chevron-up-wrapper {
    margin-left: 24px;
    position: relative;
}

.chevron-up {
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    box-sizing: border-box;
}

.chevron-up:hover {
    -webkit-animation: sdb05 2s infinite;
    animation: sdb05 2s infinite;
}
