* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.main{
    position: relative;
}
.nav {
    display: flex;
    justify-content: space-between;
    padding-top: 4%;
}
.dropdown{
    position: fixed!important;
    right: 7px;
    top: 50%;
    z-index: 50;
}
.dropdown-menu{
    min-width: fit-content!important;
}
.top-nav{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
}
.content{
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 80%;
}
.content div{
    width: 100%;
}
.typewriter{
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.typewriter h1 {
    color: #000;
    font-family: monospace;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em;
    /* Adjust as needed */
    animation:
        typing 3.5s steps(30, end) infinite,
        blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange
    }
}
.php-dev, .angular-dev{
    display: flex;
    column-gap: 10px;
}
.hire{
    text-align: center;
    padding-top: 20px;
}
.hire span{
    border: 1px solid red;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
}
.profile-info,
.based {
    display: flex;
    flex-direction: column;
}

.profile-info {
    justify-content: space-around;
    position: fixed;
}

.profile {
    height: 100vh;
    align-content: center;
}

.social {
    display: flex;
    justify-content: space-around;
}

.home {
    position: relative;
}

.nav,
.content {
    right: 0;
}