@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(227, 227, 227);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#main {
    overflow: hidden;
}

.intro{
    margin-top: 120px;
    width: auto;
    padding: 50px;
    border: 3px solid rgb(11, 129, 255);
    border-radius: 50px;
}
.intro>h1{
    font-size: 3rem;
}
.intro>p{
    font-weight: bolder;
    font-size: larger;
}
.intro+h1{
    margin-top: 200px;
}
.dropdown-style-functionality {
    /* height: 300px; */
    margin: 0 1rem 0 0;
    background-color: rgb(255, 255, 255);
    margin: 2rem;
    border-radius: 30px;
    padding: 1rem;
    position: relative;
    box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
    box-sizing: border-box;
    width: calc(100% - 4rem);
    color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(33px);
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-weight: bolder;
}
.left{
    align-self: baseline;
    margin-left: 150px;
    border-radius: 30px 0 30px 30px;
}
.right{
    align-self: self-end;
    margin-right: 150px;
    border-radius: 0 30px 30px 30px;
}
.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mainContainer>div{
    width: 50%;
        color: rgb(11, 129, 255);
}


.mainContainer>div h1{
    text-align: center;
}

.mainContainer>div p{
    text-align: justify;
}

.developresLists{
    color: rgb(11, 129, 255);
    margin-top: 50px;
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.allDevelopers{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.singleDev{
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgb(11, 129, 255);
}
.singleDev img{
    width: 150px;
    border-radius: 50%;
}

body::-webkit-scrollbar{
    display: none;
    width: 3px;
    background-color: #000000;
}
body:hover::-webkit-scrollbar{
    display: block;
}
body::-webkit-scrollbar-thumb{
    background-color: rgb(11, 129, 255);
    border-radius: 10px;
}