/* 
.nav{
background-color: brown;
height: 60px;
position: relative;
top: 20px;
left: 30px;
z-index: 1;

} */


header {
    position: sticky;
    top: 0;
    z-index: 2;
}

.nav{
background-color: brown;
height: 60px;
position: sticky;
top: 0px;

}

.nav-li{
    display: inline-block;
    color: beige;
    margin: 20px;

}

.container{
    background-color: rgb(125, 122, 122);
    height: 100vh;
    width: 100%;

    opacity: 50%;
    padding: 100px;
}

.footer{
    background-color: brown;
    height: 60px;

    color: beige;
}


.link{
    padding: 5px;
    color: beige;
  
}

.p{
    padding: 5px;
}

.span{

    padding: 5px;
}


.box{
    height: 500px;
    width: 250px;
    color: rgba(87, 255, 244, 0.54);
    border-radius: 5px;
    border: 1px solid beige;
    margin: 0 auto;
    position: static;

}


.tooltip {
    position: absolute; 
    top: 10px;     
    right: 10px; 
    background-color: orange;
    color: white;
    border-radius: 5px;
    padding: 5px 12px;
    z-index: 3;
    margin: 20px;
    position: fixed;
}

.content{

    text-align: center;
    color: black;
}

.btn{
    position: fixed;
    bottom: 0;
    right: 0;

}