html {
    scroll-behavior: smooth;
}
body {
    max-width: 600px;
}
h1 {
    color: var(--bs-primary);
    font-weight: 400;
    line-height: 130%;
    font-size: 1.5rem;
}
.next--link span {
    background-color: var(--bs-teal);
    color: #fff;
    display: inline;
    white-space: pre-wrap;
    font-family: arial, sans-serif;
    padding: 5px 5px 5px 0;
    box-shadow: -6px 0 0 var(--bs-teal);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-decoration: none;
}
.next--link {
    position: absolute;
    bottom: 10px;
    font-size: 1.3rem;
    max-width: 190px;
    text-decoration: none;
    line-height: 1.3;
    left: 30px;
    text-align: left;
}
.page {
    min-height: 100vh;
    padding: 20px 0;
}
.next--link::after {
    content: "↓";
    position: relative;
    display: block;
    color: var(--bs-teal);
    font-size: 3.5rem;
    font-weight: 200;
}
.like--it {
    color: var(--bs-teal);
    font-weight: 700;
    font-size: 1.7rem;
}
.benefit {
    width: 100%;
    background-color: var(--bs-cyan);
    padding: 5px;
    color: var(--bs-white);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 0 10px;
    min-height: 70px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.benefit p {
    margin: 0;
}
.leave a {
    text-decoration: none;
    font-weight: 700;
}
.leave a span {
    color: var(--bs-teal);
}
#page-01 {
    padding-top: 60px;
}
.rocket.launch {
    animation: 3s ease-in 0.2s fly;
    animation-fill-mode: forwards;
}
@keyframes fly {
    0% {
        bottom: 30px;
    }
    60% {
        opacity: 1;
    }
    100% {
        bottom: 150px;
        right: -100px;
        visibility: hidden;
        opacity: 0;
    }
}
.rocket {
    position: absolute;
    bottom: 30px;
    right: 70px;
    color: #fff;
    font-size: 3rem;
}
.logo {
    max-width: 250px;
    width: auto;
    margin-bottom: 25px;
    margin-top: 25px;
}
.goodbye{
    margin-top: 20px;
}
@media (min-width: 601px) {
    .page {
        min-height: 0;
    }  
    .next--link {
        position: relative;
        bottom: auto;
        max-width: none;
        left: auto;
        display: block;
        margin: 50px 0 0 0;
    }
}