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

body {
    overflow: hidden;
    overflow-y: hidden;
}

.background {
    position: fixed;
    background-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/source/aboutbg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    animation: backgroundAnimation 20s linear 5;
    overflow: hidden;
}

.content {
    /* position: relative; */
    z-index: 1;
    width: 100%;
    height: 150vh;

    overflow-x: hidden;
    overflow-y:hidden;
    scrollbar-width: none;
    contain: content;
    -ms-overflow-style: none;
}

@keyframes backgroundAnimation {
    0% {
        background-position: center;
    }

    50% {
        background-position: bottom right;
    }

    100% {
        background-position: center;
    }
}

header {
    position: fixed;
    top: -20px;
    left: 0;
    width: 100%;
    padding: 30px 100px; 
    /* 30px 0; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

header .logo {
    color: blanchedalmond;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    pointer-events: none;
}

header .logo img {
    width: 20vh;
    /* opacity: 0; */
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: aliceblue;
    border-radius: 20px;
}

header ul li a:hover,
header ul li a.active {
    background: #fff;
    color: #3f1078;
}


#dp{
    position: fixed;
}
#image {
    left: -20px;
    opacity: 0;
    transition: opacity 2s;
    width: 350px;
    /* height: 300px; */
    /* position: relative; */
    /* margin: auto; */
    margin-top: 26vh;
    margin-left: 4vw;
    /* mix-blend-mode: screen; */
    box-shadow: 20px 20px 10px 0px rgba(100, 100 100, 0.9);
    pointer-events: none;
}

.desc {
    color: azure;
    font-size: larger;
}

.contener {
    /* position: static; */
    box-sizing: border-box;
    display: flex;
    overflow: auto;
    scrollbar-width: 0;
    width: 100vw;
    height: 150vh;
    /* flex-direction: row ; */
}

.speech {
    /* padding: 20vh 10vw; */
    /* display: flex; */
    /* height: 60vh; */
    position: fixed;
    scrollbar-width: none;
    padding: 10vw;
    color: antiquewhite;
    text-shadow: 1px 1px 2px red, 0 0 1em grey, 0 0 0.2em rgb(255, 255, 255);
    letter-spacing: 0.3rem;
    word-spacing: 0.6rem;
    /* left: 50vw; */
    scroll-behavior: smooth;
    /* overflow-y: scroll; */
    /* hide scrollbar */
    /* word-break: ; */
    -ms-overflow-style: none;
    top: 12vh;
    left: 30vw;
    /* right: 5vw; */
    /* width: ; */
    /* content: fit; */
}

.speech::-webkit-scrollbar {
    display: none;
}

.d{
    align-items: center;
    align-content: center;;
}

.down{
    color: aqua;
    text-shadow: 1px 1px 2px rgba(188, 20, 109, 0.911), 0 0 1em rgb(10, 124, 172), 0 0 0.2em rgb(255, 255, 255);
    background: rgba(0,0,0,0);
    font-size: 20px;
    cursor: pointer;
    border: none
}

button:hover {
    color: #829c195e;
}

button:active {
    color: #9cc819dd;
}