html {
    scroll-behavior: smooth;
}

body {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.frontpage--cover_wrapper {
    height: 100vh;
    width: 100%;
    background: url(../../assets/homepage/cover.png) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
}

.frontpage--cover_down_arrow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    color: black;
}

.frontpage--cover_down_arrow:hover {
    color: rgb(219, 219, 219);
    text-decoration: none;
}

.frontpage--main {
    min-height: 200vh; /* Temporary */
    background: linear-gradient(to bottom, rgb(194, 51, 51), #80513B);
}

.frontpage--footer {
    height: 30vh;
    background-color: rgb(255, 224, 47);
}

.frontpage--pearls {
    height: 100%;
    width: 100%;
}

.frontpage--accessibility {
    /* This section should only be visible to screen readers */
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .frontpage--cover_wrapper {
        background: url(../../assets/homepage/cover_mobile.png) no-repeat top center fixed; 
        background-size: 100%;
    }
}