html{
    scroll-behavior:  smooth;
}
body{
    background: rgb(36, 36, 36);
    color: white;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden ;
}
.navigation {
    position: sticky;
    background-color: rgb(26,26,26);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    top: 0;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    z-index: 15;
}
.nav-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-right {
    display: flex;
    gap: 1.5rem;
    grid-column: 3;
    align-items: center;
}
.nav-right li{
    color: white;
    text-decoration: none;
}
.nav-right a{
    color: white;
    text-decoration: none;
}
h1 {
    color: white;
}
header{
    background-color: rgb(26, 26, 26);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    
}
ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
li{
    display: inline-block;
    margin: 0 20px 0;
}
a{
    text-decoration: none;
    color: white;
}
.contact{
    background: rgb(28, 26, 188);
    color: white;
    padding: 15px;
    border-radius: 20px;
    font-size: large;
    font-family: 'Courier New', Courier, monospace;
}
[popover]{
    border: 1px solid black;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    margin-right: 0%;
    margin-top: 4.25%;

    background-color: rgb(39, 36, 36);
}
.innerBorder{
    background-color: rgb(61, 65, 65);
    padding: 1.5rem;
    border-radius: 8px;
}
#ContactInfo{
    font-size: large;
    color: aliceblue;
}
[popover]::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
}
footer{
    position: absolute;
    height: 15%;
    width: 100%;
    background-color: rgb(26, 26, 61);
    text-align: center;
}
footer h1{
    margin-top: 2.5%;
    font-size: large;
}

.Linkedin img{
   height: 4vh;
    position:absolute;
    left: 10%;
    top: 45%;
}
.back2top{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1417dc;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-decoration: none;
    transition: 0.2s ease-out;
}
.back2top span{
    color: white;
    font-size: 2rem;
    transition: 0.2s ease-out;
}
.back2top:hover{
    background-color: rgb(28, 26, 188);
}
.back2top:hover span{
    transform: translateY((1rem));
}