* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.delius-regular {
  font-family: "Delius", cursive;
  font-weight: 400;
  font-style: normal;
}

/* width */
::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            #9b6fe3,
            #865ac5,
            #6f3fb3);
    border-radius: 10px;
}

body {
    width: 100%;
    height: 100dvh;
    background-color: #DAC3ED;
    position: relative;
    font-family: 'Delius', cursive;
}

#loading-screen {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgb(206, 151, 240);
    z-index: 999;
}

#loader {
    width: 48px;
    height: 48px;
    border: 5px solid whitesmoke;
    border-top-color: #8F64CD;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

a {
    text-decoration: none;
}

#body-bg {
    width: 100%;
    height: 100%;

    background-image: url("blaze_bg.png");
    background-repeat: repeat;
    background-size: auto;
    animation: move-bg 60s linear infinite;

    opacity: 0.4;

    position: absolute;
    z-index: -10;
}

#wrapper {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 1rem;
}


header {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
}

#website-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.5em;
    color: #865ac5;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: whitesmoke;
}

nav {
    display: flex;
    gap: 30px;
}

.nav-btn {
    font-size: 1.6em;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #603b95;
}

.heart-icon {
    font-size: 1.2em;
}

#content {
    /*background-color: #b78df3;
    padding: 30px;
    border-radius: 20px;*/
}


.heart-image {
    width: 250px;
    aspect-ratio: 1;
    object-fit: cover;
    --_m: radial-gradient(#000 69%, #0000 70%) 84.5%/50%;
    -webkit-mask-box-image: var(--_m);
    mask-border: var(--_m);
    clip-path: polygon(-41% 0, 50% 91%, 141% 0);
}

.gallery {
    /*border: 10px solid #8F64CD;
    border-radius: 20px;*/
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    height: 580px;
    overflow-y: scroll;
    padding: 25px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 0.2s;
    border: 4px solid rgb(154, 37, 184);
    border-radius: 30px;
}

.gallery img:hover {
    opacity: 0.4;
    transition: 0.2s;
}

@keyframes move-bg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 -1000px;
    }
}

/** ABOUT **/

.info-rect {
    height: 700px;
    background-color: rgb(206, 151, 240);
    position: relative;
    border-radius: 15px;
}

.info-rect>* {
    position: absolute;
}

.sticky-note {
    left: 10%;
    top: 10%;
    position: relative;
}

.sticky-note-img {
    width: 300px;
    height: auto;
    position: absolute;
    rotate: -7deg;
}

.sticky-note-text {
    font-size: 1.4em;
    position: absolute;
    width: 180px;
    left: 65px;
    top: 57px;
    rotate: -5deg;
}

.about-rect {
    width: 50%;
    right: 100px;
    top: 100px;
}

.about-text {
    font-size: 1.6em;
}

.silver-n-blaze-img {
    width: 250px;
    height: auto;
    right: 40px;
    bottom: 40px;
}