body {
    background: url("../img/bgi.png") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.parent-of-head {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 80vh;
    position: relative;
    gap: 110px;
}

.nav-cont {
    align-self: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to top, #141414 55%, #3d3d3d);
    border-radius: 300px;
    padding: 15px;
    gap: 25px;
    height: 50px;
    width: calc(100% - 20%);
    margin-top: 7px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu-items {
    display: flex;
    gap: 15px;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    user-select: none;
    transition: 0.3s ease-in-out;
}

.menu-icon:hover {
    font-size: 35px;
    text-shadow: 0 0 7px white;
}

.cn-txt {
    margin-right: auto;
    font-size: 35px;
    color: white;
    font-weight: bolder;
    text-shadow: 0 0 6px white;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.menu-items > a {
    color: #dbdbdb;
    font-weight: bolder;
    border-bottom: 2px solid transparent;
    /* border-radius: 10px; */
    padding: 7px 10px;
    text-shadow: 0 0 5px white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.menu-items > a:hover {
    border-bottom: 2px solid #d4d4d4;
    color: white;
    cursor: pointer;
    transform: scale(1.1);
    text-shadow: 0 0 6px black;
}

@media (max-width: 768px) {
    .menu-items {
        display: none;
        flex-direction: column;
        gap: 13px;
        background-color: #2c2c2c;
        padding: 10px;
        border-radius: 10px;
        position: absolute;
        top: 75px;
        right: 10px;
        z-index: 10;
        text-align: center;
    }

    .menu-items > a {
        margin: 0;
        padding: 8px;
    }

    .menu-items.show {
        display: flex;
    }

    .menu-icon {
        display: block;
        margin-right: 10px;
        text-shadow: 0 0 5px white;
    }

    .parent-of-head {
        gap: 40px;
    }
}