*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

html, body {
    width: 100%;
    height: 100%;
    background-color: rgb(251, 247, 235)
}

/* For modern browsers */
::selection {
    background-color: #eb5e28;
    color: white;
}


.main{
    width: 100%;
    
}

nav{
    display: flex;
    justify-content: space-between;
    color: #403d39;
}

nav h1{
    margin: 10px 14px;
    
}

nav ul li{
    text-decoration: none;
    list-style: none;
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    margin-right: 15px;
    background-color: #403d39;;
    color: #ccc5b9;
    border-radius: 5px;
    cursor: pointer;
}

nav ul li a{
    text-decoration: none;
    color: #ccc5b9;
}

nav ul li:hover{
    background-color: #eb5e28;
    color: #191716;
    transition: all 0.2s;
}


.heading{
    margin-top: 20px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.heading p{
    margin-left: 30px;
}

.heading h1{
    margin-left: 30px;
    margin-top: 10px;
    color: #252422;
    transition: transform 0.3s; 
}

.heading h1:hover {
    transform: scale(1.03);
}
/* .heading span{
    margin-left: 30px;
    display: flex;
} */

.sp{
    margin-left: 30px;
    margin-top: 5px;
    /* display: flex; */
    /* flex-direction: row; */

}

.sps{
    padding: 5px;
    transition: transform 0.3s;
    display: inline-block;
    cursor: pointer;

}

.sps:hover {
    transform: scale(1.1);
    border: 2px solid #fc5e1f;

}



.heading #about{
    padding: 10px 5px;
    color: #191716;
    transition: transform 0.3s;
}

.heading #about:hover{
    transform: scale(1.02);
}

.heading #fb{
    text-decoration: none;
    border: 2px solid #eb5e28;
    color: #fc5e1f;
    width: 90px;
    padding: 5px 10px;
    margin-left: 30px;
    margin-top: 15px;
    /* transition: 0s all ease-in-out; */
}



#fb:hover {
    /* width: 100%; */
    background-color: #eb5e28;
    color: #fffcf2;
    transition: 1s ease-in-out, color 0.3s ease-in-out 0.3s, background-color 0.3s ease-in-out 0.3s;
}

#line-stock{
    margin-top: 20px;
}

.projects{
    width: 100%;
    height: 100vh;
    /* background-color: black; */
    /* color: white; */
    margin-top: 10px;
    position: relative;
}

.about{
    margin: 10px;
    display: flex;
    display: none;
    
    
}

.projects #titel{
    padding: 10px 0 20px 10px;
    transition: all 0.3s ease-in;
}


.projects #titel:hover{
    font-size: 34px;
}

.project-list{
    height: 100vh;
    width: 100%;
    margin-left: 10px;
    margin-top: 10px;
}

.project-list ul{
    padding: 10px;
    margin-left: 20px;
}

.project-list ul li{
    font-size: 30px;
    text-transform: uppercase;
    margin: 15px;
    transition: transform 0.3s;
}

.project-list ul li:hover{
    transform: scale(1.02);
}

.project-list ul li a{
    text-decoration: none;
    color: black;

}

.project-list ul li a:hover{
    color: #eb5e28;
    border: 1px solid #eb5e28;
    background-color: #fffcf2;
    /* transform: scale(1.02); */
}
/* 
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 8vh;
    background-color: #403d39;
    color: #ccc5b9;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
}

.footer h4{
    margin: 5px;
} */


#telegram-bots{
    font-size: 30px;
    font-weight: 5px;
    transition: all 0.2s;
}
#telegram-bots:hover{
    font-size: 33px;
}

#bot-list{
    display: flex;
    flex-direction: column;
}

/* Other CSS styles... */

#bot-list span {
    margin: 10px;
    font-size: 20px;
    transition: transform 0.1s;
}

#bot-list span:hover {
    transform: scale(1.02);
}


@media (max-width:491px) {
    #nav{
        display: none;
    }

    .about{
        display: flex;
    }

}

/* @media (min-width:492px) {
    #about{
        display: none;
    }
} */