@font-face {
    font-family: 'kawederegular';
    src: url('fonts/kawede-regular-webfont.woff2') format('woff2'),
         url('fonts/kawede-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Public Sans", "Helvetica Neue", Helvetica, sans-serif;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ––––––––––– TEXT ––––––––––– */

@keyframes loaded {
    0% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#home-display {
    width: 100%;
    position: absolute;
    top: 25%;
    opacity: 0;
    animation: loaded 4s forwards;
}

.display {
    display: block;
    font-family: 'kawederegular';
    font-style: normal;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.display-1 {
    font-size: 11.25vw;
    text-transform: uppercase;
    color: #27140C;
    line-height: 0.75;
}

.display-2 {
    font-size: 6.5vw;
    text-transform: uppercase;
    -webkit-text-stroke: 2px #27140C;
    color: transparent;
    line-height: 1.2;
}

.display-3 {
    font-family: "Public Sans", "Helvetica Neue", Helvetica, sans-serif;
    font-size: 3vw;
    padding-left: 3%;
    width: 50%;
    text-align: left;
    color: #27140C;
    opacity: 0.8;
}

/* ––––––––––– CIRCLES ––––––––––– */

.blurcle {
    filter: blur(160px);
    -webkit-filter: blur(60px);
    width: 480px;
    height: 480px;
    mix-blend-mode: screen;
    border-radius: 200px;
}

.yellow {
    background-color: #EDBC5A;
    opacity: 0.24;

}

.purple {
    background-color: #9F63E3;
    opacity: 0.4;
}

#circle-top {
    position: absolute;
    right: -64px;
    top: -209px;
}

#circle-bottom {
    position: absolute;
    left: -195px;
    bottom: -258px;
}

/* ––––––––––– LOADER ––––––––––– */

@keyframes loader {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1);
    }
    75% {
        transform: scale(2);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

#loader {
    position: absolute;
    width: 100vh;
    height: 100vh;
    left: calc(50% - 100vh/2);
    top: 0;
    opacity: 1;
    z-index: 1000;
    animation: loader 4s cubic-bezier(0.8, 0, 0, 1) forwards;
}

@media only screen and (max-width: 1000px) {

    #home-display {
        top: 40%;
    }

}

@media only screen and (max-width: 600px) {

    
    .display-2 {
        font-size: 1.25rem;
        -webkit-text-stroke: 0px transparent;
        color: #27140C;
        line-height: 1.2;
    }
    
    .display-3 {
        font-size: 0.75rem;
        padding-left: 3%;
        width: 100%;
        text-align: center;
    }

}
/* 
@media only screen and (max-height: 600px) {
    .display-1 {
        font-size: 3rem;
        text-transform: uppercase;
        color: #27140C;
        line-height: 0.75;
    }
    
    .display-2 {
        font-size: 1.25rem;
        -webkit-text-stroke: 0px transparent;
        color: #27140C;
        line-height: 1.2;
    }
    
    .display-3 {
        font-size: 0.75rem;
        padding-left: 3%;
        width: 100%;
        text-align: center;
    }
} */