html,body{
    margin:0;
}

body{
    width: 100%;
    height:100vh;
    overflow-block: clip;
}
ul{list-style-type: none;}
.bar{
    background-color: #6b5e72;
    border: #6b5e72 solid 1px;
    display:flex;
    justify-content: center;
    gap: 12rem;
    margin: 0;
    padding: 0;
    width:99.9vw;
    height:3%;

}
.navLinks{
    display:flex;
    position:center;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Google Sans Code", monospace;
    flex:1;
    transition: transform 0.15s ease, color 0.15s ease;
    padding-top:6.7%
}

.navLinks:hover{
    color:#abeaab;
    transform: scale(1.15) rotate(-5deg);
    text-decoration: underline;

}
.background{
    background-color:black;
    width:100%;
    height:100%;

}
.main{
    padding-top:25px;
}
.content{
    font-family: "Google Sans Code", monospace;
    color:white;
    text-align: center;
}
.img {
    border:solid white 3px;
    border-radius: 500px;
    position:sticky;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 25px 10px rgba(255, 255, 255, 0.4);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.3s linear;
}
.img:hover{
    border-color:#abeaab;
    box-shadow: 0px 0px 25px 10px rgb(171, 234, 171, 0.4);
}