body {
    margin: 0;
    font-family: 'Segoe UI';
    background-color: rgb(8,8,8);
}

main{
    padding: 70px;
}

*{
    color: white;
    text-align: center;
}

.page-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-navbar {
    height: 60px;
    width: 100%;
    padding: 0 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #080808;
    border-bottom: 2px solid #1a1a1a;
}


.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.3px;
}


.foot {
    border-top: 2px solid #1a1a1a;
    font-size: 14px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: black;
}

.img-main {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
}

.items img {
    transition: opacity 0.3s ease;
}

.items img:hover {
    opacity: 0.6;
}

nav {
    background-color: #0B4137;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
    font-size: 25px;
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 7px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f2bd67;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: rgb(8,8,8);
    transition: color 0.3s ease;

}

.nav-links a:hover::after {
    width: 100%;
}


#active-tab{
    color: rgb(8,8,8);
}


.top-line {
    margin: 0 auto;
    top: -10px;          
    width: 150px;
    height: 1px;
    background-color: white;
}

.items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:15px;
}


.non-draggable{
    -webkit-user-drag: none;
    user-select: none;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


body {
    animation: fadeIn 0.6s ease;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}