@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Nunito+Sans:ital,opsz,wdth,wght,YTLC@0,6..12,75..125,200..1000,440..540;1,6..12,75..125,200..1000,440..540&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Share+Tech&family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Nunito+Sans:ital,opsz,wdth,wght,YTLC@0,6..12,75..125,200..1000,440..540;1,6..12,75..125,200..1000,440..540&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Share+Tech&family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100%;
    background: #6664dbec;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.navbar {
    background-color: #101D42;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1;
}

.contactIcons {
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar i{
    color: white;
    transform: scale(2);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    transition: .3s ease;
    border-radius: 50%;
}

.navbar .contactIcons i:hover {
    color: #6564DB;
    background-color: white;
}



.navbar .codeLink {
    background-color: #6564DB;
    border: 5px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 50px;
    border-radius: 25px;
    cursor: pointer;
    transition: .3s ease;
    position: relative;
}

.navbar .codeLink:hover {
    border: 5px solid #6564DB;
    background-color: white;
}

.navbar .codeLink:hover i{
    color: #6564DB;
}

.navbar .codeLink i{
    transform: scale(2);
}

.navbar .logo {
    font-family: 'Figtree';
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}


/* Tooltip styles */

.menu-item {
    position: relative;
}

.menu-item::after {
    content: attr(data-title);
    position: absolute;
    font-family: 'Nunito sans';
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #101D42;
    border: 3px solid #101D42;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

.visitactive {
    color: #6564DB !important;
    background-color: white !important;
}

.menu-item:hover::after {
    opacity: 1;
}

.codeLink a {
    text-decoration: none;
}

.codeLink::after {
    content: attr(data-title);
    position: absolute;
    font-family: 'Nunito sans';
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #6564DB;
    color: white;
    border: 3px solid white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

.codeLink:hover::after {
    opacity: 1;
}

.inputArea {
    background-color: white;
    width: 30%;
    height: 200px;
    border: 5px solid #101D42;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10%;
    color: #6564DB;
    font-family: 'Nunito Sans';
    font-size: 30px;
}

.inputArea input {
    height: 35px;
    width: 300px;
    font-family: 'Nunito sans';
    border: 2px solid #6564DB;
    border-radius: 10px;
    padding: 5px;
}

.inputArea input::placeholder {
    font-size: 18px;
}

.inputArea button {
    height: 35px;
    width: 80px;
    border-radius: 15px;
    border: none;
    background: #6564DB;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.inputArea button:hover {
    background: white;
    border: 3px solid #6564DB;
    color: #6564DB;
}

.addedTasks {
    font-family: 'Nunito sans';
    margin-top: 20px;
    width: 30%;
    list-style-type: none;
}

.addedTasks .taskarea{
    resize: none; 
    overflow: hidden; 
    border: none;
    font-family: 'Nunito sans';
    background: transparent;
    color: white;
    font-size: 20px;
    padding: 0px 5px;
    width: 100%;
    width: 65%;
    text-wrap: wrap;
    user-select: none;
}

.pointerclass {
    cursor: pointer;
}

.textclass {
    cursor: text;
}

.checked {
    text-decoration: line-through;
    color: #E6ECEF !important;
}

.addedTasks .taskarea:focus {
    outline: none;
}

.editbtn {
    position: absolute;
    padding: 5px;
    text-align: center;
    transform: translateY(-50%);
    top: 50%;
    right: 60px;
    width: 70px;
    border: 3px solid #6564DB;
    border-radius: 5px;
    color: #6564DB;
    font-weight: 700;
    cursor: pointer;
}

.editbtn:hover {
    border: 3px solid white;
    color: white;
    background-color: #6564DB;
}

.tasks {
    background-color: #101D42;
    border: 3px solid white;
    color: white;
    position: relative;
    padding: 10px;
    margin-top: 10px;
    border-radius: 15px;
}

.addedTasks i {
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.addedTasks i:hover {
    color: rgba(255, 0, 0, 0.816);
    transform: translateY(-50%) scale(1.3);
}


/* styles for gmail visit */




.gcontentarea {
    background-color: white;
    width: 30%;
    height: 85vh;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid #ffa700;
    position: relative;
}

.gmailimg {
    background-color:#ffa700;
    border: 4px solid #d62d20;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmailimg img {
    width: 70%;
    height: auto;
}

.description {
    font-family: 'Figtree';
    color: 	#666;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
}

.gmail {
    font-family: 'Figtree';
    color: #d62d20;
    margin-top: 10px;
    font-size: 20px;
}

.tomaillink {
    margin-top: 20px;
    font-family: 'Nunito sans';
}

.tomaillink i {
    margin-right: 10px;
}

.go-back-btn-g {
    background-color: #d62d20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #ffa700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.go-back-btn-g button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.go-back-btn-g i {
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.go-back-btn-g:hover {
    transform: scale(1.1);
}


/* styles for linkedin visit */

.lcontentarea {
    font-family: 'Nunito sans';
    background-color: white;
    width: 30%;
    height: 85vh;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid #0077B5;
    position: relative;
}

.linkedinimg {
    background-color:#E6ECEF;
    border: 4px solid #0077B5;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedinimg img {
    width: 70%;
    height: auto;
}

.linkedin-heading {
    margin-top: 50px;
}

.profile-info {
    margin-top: 50px;
    text-align: center;
}

.profile-info h5 {
    font-size: 18px;
}

.profile-info h4 {
    margin-top: 40px;
    font-size: 20px;
}

.profile-info p{
    margin-top: 15px;
}

.linkedin-btn {
    display: inline-block;
    margin-top: 30px;
}

.go-back-btn-l {
    background-color: #E6ECEF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #0077B5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.go-back-btn-l button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.go-back-btn-l i {
    font-size: 20px;
    color: #0077B5;
    cursor: pointer;
}

.go-back-btn-l:hover {
    transform: scale(1.1);
}

/* styles for gitvisit */

.gitcontentarea {
    font-family: 'Nunito sans';
    background-color: white;
    width: 30%;
    height: 85vh;
    border-radius: 30px;
    color: #2b3137;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid #2dba4e;
    position: relative;
}

.gitimg {
    background-color:#fafbfc;
    border: 4px solid #2dba4e;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gitimg img {
    width: 70%;
    height: auto;
}

.git-heading {
    margin-top: 50px;
}

.profile-info {
    margin-top: 50px;
    text-align: center;
}

.profile-info h5 {
    font-size: 18px;
}

.profile-info h4 {
    margin-top: 40px;
    font-size: 20px;
}

.profile-info p{
    margin-top: 15px;
}

.git-btn {
    display: inline-block;
    margin-top: 30px;
}

.go-back-btn-git {
    background-color: #fafbfc;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #2dba4e;
    cursor: pointer;
    transition: all 0.2s ease;
}

.go-back-btn-git button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.go-back-btn-git i {
    font-size: 20px;
    color: #2dba4e;
    cursor: pointer;
}

.go-back-btn-git:hover {
    transform: scale(1.1);
}

/* styles for making the visit pages slide away and to the webpage */

.contentarea {
    position: absolute;
    top: 90px;
    right: 20px;
    transform: translateX(300%);
    transition: .5s ease;
}

.contentarea.active {
    transform: translateX(0);
}

/* styles for mobie phones */
@media (max-width: 768px) {
    body {
        overflow-y: scroll;
        width: 100vw;
        overflow-x: hidden;
    }
    
    .navbar {
        width: 100vw;
        left: 0;
        justify-content: space-between;
    }

    .navbar .logo {
        font-size: 1.5rem;
        margin-left: 30px;
    }

    .contactIcons {
        position: absolute;
        top: 100px;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
    }

    .contactIcons i{
        background-color: #101D42;
        padding: 10px;
        border-radius: 10px;
        border: 2px solid white;
    }

    .navbar .codeLink {
        margin-right: 10px;
    }

    form {
        width: 100%;
    }

    .inputArea {
        gap: 20px;
        margin-top: 150px;
        width: 90%;
        height: 150px;
    }

    .inputArea input {
        width: 65%;
        float: left;
        margin-left: 10px;
    }

    .inputArea input::placeholder {
        font-size: 16px;
    }

    .inputArea button {
        width: 25%;
        float: right;
        margin-right: 10px;
    }

    .addedTasks {
        width: 90%;
    }

    .contentarea {
        position: fixed;
        top: 145px;
        right: 15px;
        height: 75%;
        width: 80%;
    }

    .gcontentarea {
        width: 80%;
    }

    .lcontentarea {
        padding: 5px;
    }

    .gitcontentarea {
        padding: 5px;
    }

    .menu-item::after{
        display: none;
    }

    .linkedin-heading {
        margin-top: 10px;
    }

    .profile-info {
        margin-top: 20px;
    }

    .profile-info h5{
        margin-top: 10px;
    }

    .addedTasks .taskarea {
        width: 60%;
    }
}
