@import url(../fonts/stylesheet.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Switzer", sans-serif;
    text-wrap: pretty;
    font-synthesis-weight: none;
        -webkit-font-smoothing: antialiased;
        text-wrap: balance;
    
}
.font-2{
    font-family: "Sentient", sans-serif;
}
html {
    scroll-behavior: smooth;
}

ul,
li,
ol {
    list-style: none;
}

img {
    max-width: 100%;
}

button,
a {
    cursor: pointer;
}
section{
    scroll-margin-top: 98px;

}

input:focus,
input:focus-visible,
input:focus-within,
button:focus,
button:focus-visible,
button:focus-within,
textarea:focus,
textarea:focus-visible,
textarea:focus-within {
    outline: unset;
    box-shadow: unset;
}

.container {
    margin: auto;
    padding: 0 20px;
}

header.scrolled {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    background: #FDFBF7;
}

/*  STYLING START */
/*  STYLING FINISHED */

@keyframes jump {
    50% {
        transform: translateY(-30%);
    }
}

.star-box img {
    display: inline-block;
    pointer-events: none;
}

.star-box img.jump {
    animation: jump 0.5s ease;
}