@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    width: 100%;
    height: 100dvh;
    background-image: url(/assets/img/bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Outfit", sans-serif;
    
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.overlay1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* background: linear-gradient(0deg, rgba(255,141,0,0.8) 0%, rgba(255,255,255,1) 60%); */
    /* background: rgb(255,141,0);
    background: linear-gradient(0deg, rgba(255,141,0,0.8) 0%, rgba(255,255,255,1) 60%); */
    opacity: 0.8;
}
.overlay2 {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #ffffff; */
    /* background: linear-gradient(0deg, rgba(255,141,0,0.8) 0%, rgba(255,255,255,1) 60%); */
    background: rgb(255,141,0);
    background: linear-gradient(0deg, rgba(255,141,0,1) 0%, rgba(255,255,255,0) 50%);
    opacity: 0.8;
}

.overlay-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    padding: 100px 0 0 0;
}

.overlay-content img {
    width: 250px;
}

.overlay-content h2 {
    margin: 50px 0 0 0;
    position: relative;
    font-size: 90px;
    font-weight: 700;
    color: rgb(255,141,0);
}
.overlay-content h2::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 3px;
     background-color: black; 
    background-color: rgb(56, 56, 56);
     /*background-image: linear-gradient(62deg, rgb(255,141,0) 25%, rgb(56, 56, 56) 100%); */
}
.overlay-content h2::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 15px;
    width: 100%;
    height: 3px;
     background-color: black; 
    background-color: rgb(255,141,0);
     /*background-image: linear-gradient(62deg, rgb(255,141,0) 25%, rgb(56, 56, 56) 100%); */
}
.overlay-content h1 {
    margin: -40px 0 0 0;
    font-size: 140px;
    font-weight: 900;
    color: rgb(56, 56, 56);
    letter-spacing: -14px;
}

#demo {
    margin: 25px 0 0 0;
    font-size: 24px;
    width: 50%;
    text-align: center;
    color: rgb(56, 56, 56);
}