
html {
    scroll-behavior: smooth;
}

.back-to-top {
    display: block;

    width: 200px;

    margin: 40px auto;

    padding: 12px;

    text-align: center;
    text-decoration: none;

    color: white;
    background-color: rgb(35, 35, 35);

    border-radius: 8px;

    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: rgb(70, 70, 70);
}

.page {
    animation: FadeIn;
    animation-duration: 1s;
    animation-timing-function: ease;
}

@keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.goals-section {
    width: 800px;
    margin: 40px auto 0 auto;

    border-radius: 6px 6px 0 0;

    text-align: center;
    background-color: rgb(52, 152, 219);
}

.goals-section h2 {
    margin: 0;
    padding: 10px;

    font-size: 30px;
}

.goals {
    width: 800px;
    margin: 0 auto 80px auto;

    border-radius: 0 0 6px 6px;

    text-align: center;
    overflow: hidden;

    background-color: rgb(41, 128, 185);

    transition: box-shadow 0.3s ease;
}

.goals:hover {
    box-shadow: 0 12px 28px rgba(223, 223, 223, 0.4);
}

.goals p {
    padding: 20px;
    margin: 0;
    font-size: 25px;
    line-height: 1.5;
}

.goals-image {
    width: 100%;
    height: 450px;

    object-fit: cover;
    object-position: center 35%;

    display: block;

    transition: transform 0.3s ease;
}

.goals-image:hover {
    transform: scale(1.03);
}

.motivation-section {
    width: 800px;
    margin: 40px auto 0 auto;

    border-radius: 6px 6px 0 0;

    text-align: center;
    background-color: rgb(125, 80, 215);
}

.motivation-section h2 {
    margin: 0;
    padding: 10px;

    font-size: 30px;
}

.motivation {
    width: 800px;
    margin: 0 auto 80px auto;

    border-radius: 0 0 6px 6px;

    text-align: center;
    overflow: hidden;

    background-color: rgb(82, 50, 155);

    transition: box-shadow 0.3s ease;
}

.motivation:hover {
    box-shadow: 0 12px 28px rgba(223, 223, 223, 0.4);
}

.motivation p {
    padding: 20px;
    margin: 0;
    font-size: 25px;
    line-height: 1.5;
}

.motivation-image {
    width: 100%;
    height: 450px;

    object-fit: cover;
    object-position: center 35%;

    display: block;

    transition: transform 0.3s ease;
}

.motivation-image:hover {
    transform: scale(1.03);
}

.page-bottom-space {
    height: 30px;
}

@media (max-width: 600px) {

    .goals-section,
    .goals,
    .motivation-section,
    .motivation {
        width: 90%;
    }

    .goals p,
    .motivation p {
        font-size: 18px;
    }

    .goals-section h2,
    .motivation-section h2 {
        font-size: 24px;
    }

    .goals-image,
    .motivation-image {
        height: 250px;
    }

    .goals ul {
        font-size: 18px !important;
        padding: 0 20px 20px 20px;
    }
}
