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

body,
html {
    width: 100%;
    height: 100%;
    font-family: "monument", "Poppins", sans-serif;
}

#top {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#tleft p:hover{
    cursor: pointer;
    border-bottom:1px solid rgb(227, 220, 17);
}
.menu i:hover{
      cursor: pointer;
    border-bottom:1px solid rgb(227, 220, 17);
}
.menu a:hover{
    border-bottom:1px solid rgb(227, 220, 17);
}
.tags a {
    text-decoration: none;
    color: gold;
    margin-right: 10px;
}
.tags a:hover
{
    border-bottom:1px solid rgb(227, 220, 17);
}
.menu {
    color: black;
    display: flex;
    gap: 10px;
}

.menu a {
    color: black;
    text-decoration: none;
}

.main {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::-webkit-scrollbar {
    display: none;
}

.main img {
    height: 600px;
    width: 510px;
    position: relative;
    z-index: 99;
    object-fit: cover;
    /* top:2%; */
}

.scroll-div {
    position: absolute;
    top: 22%;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.scroll-div h1 {
    display: inline-block;
    font-size: 120px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: 30px;
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: reverse;
}

.scroll-div::-webkit-scrollbar {
    display: none;
}

.scroll-div2 {
    position: absolute;
    top: 42%;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 100;
}

.scroll-div2 h1 {
    display: inline-block;
    font-size: 120px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: 30px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    color: transparent;
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: reverse;
}

.scroll-div::-webkit-scrollbar {
    display: none;
}

.scroll-div2::-webkit-scrollbar {
    display: none;
}

.scroll-div3::-webkit-scrollbar {
    display: none;
}

.scroll-div3 {
    position: absolute;
    top: 62%;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.scroll-div3 h1 {
    display: inline-block;
    font-size: 120px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: 30px;
    animation-name: scroll;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: normal;
}

.scroll-div::-webkit-scrollbar {
    display: none;
}

#txt {
    position: absolute;
    width: 60%;
    text-align: center;
    font-size: 40px;
    color: black;
    top:6%;
    font-weight: bold;
    z-index: 999;
    font-weight: 700;
}
footer
{
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    height: 10%;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.contact
{
    display: flex;
    justify-content: center;
    gap:10px;
    align-items: center;
}
.contact a
{
    text-decoration: none;
    color: black;
    font-size: 20px;
    transition:all 0.331s ease-in-out;
}
.ri-github-fill
{
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact a:hover
{
   transform: scale(1.2);
   transform: translateY(-5px);
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 32px));
    }
}
@media screen and (max-width: 768px) {
    .main img {
        height: 400px;
        width: 340px;
    }

    .scroll-div h1,
    .scroll-div2 h1,
    .scroll-div3 h1 {
        font-size: 80px;
    }

    #txt {
        font-size: 30px;
        width: 80%;
    }

    footer {
        font-size: 15px;
    }
}