*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #081b29;
    color:aliceblue;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #081b29;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    z-index: 100;
}
.color{
    position: relative;
    font-size: 40px;
    color: #0020f3;
    text-decoration: none;
    font-weight: 600;
}
.color::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 2s ease forwards;
    animation-delay: 1s;
}
.navbar a{
    font-size: 20px;
    color: rgba(18, 63, 0, 0.802);
    text-decoration: none;
    font-weight: 600;
    margin-left: 35px;
    transition: 1s;
}
.navbar a:hover,
.navbar a.hold {
    position: relative;
    color: rgb(111, 255, 0);
}
.navbar a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 2s ease forwards;
    animation-delay: 1s;
}
.write{
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}
.write-test{
    max-width:600px;
}
.write-test h1{
    position: relative;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2 ;
}
.write-test h1::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 2s ease forwards;
    animation-delay: 1s;
}
.write-test h3{
    position: relative;
    font-size: 40px;
    font-weight: 700;
    color: aqua;
}
.write-test h3::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 2s ease forwards;
    animation-delay: 1s;
}
.write-test p{
    font-size: 25px;
    margin: 20px;
}
.write-test p::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #081b29;
    animation: showRight 2s ease forwards;
    animation-delay: 1s;
}
.img img{
    width: 150%;
    height: 500px;
    margin-left: 100%;
    border-radius: 50px;
    border: 4px solid #081b29;
    transition: transform 2s ease;
}
.img img:hover{
    transform: scale(1.2);
}
.mxh-sri{
    position: absolute;
    bottom: 40px;
    width:170px;
    display: flex;
    justify-content: space-between;
}
.mxh-sri a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 50%;
    font-size: 30px;
    color: #00abf0;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}
.mxh-sri a:hover{
    color:#081b29 ;
}
.mxh-sri a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #00abf0;
    z-index: -1;
    transition: .5s;
}
.mxh-sri a:hover::before{
    width: 100%;
}
@keyframes showRight{
    100%{
        width: 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 5%;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .write {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .write-test h1 {
        font-size: 36px;
    }

    .write-test h3 {
        font-size: 28px;
    }

    .write-test p {
        font-size: 18px;
        margin: 10px 0;
    }

    .img img {
        margin: 20px auto 0 auto;
        width: 80%;
        height: auto;
    }

    .mxh-sri {
        position: static;
        margin: 20px auto;
    }
}
