::-webkit-scrollbar{
    display: none;
}
body{
    margin: 0;
    padding: 0;
    background: #fff;
    padding-bottom: 15px;
}
.head{
    display: flex;
    width: 100%;
    height: max-content;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 9px;
}
.head .left{
    width: 420px;
    height: max-content;
    padding: 15px;
}
.head .left h1{
    margin: 8px;
    color: rgb(83, 83, 83);
    font-size: 42px;
}
.head .left h1 span{
    color: red;
    font-size: 23px;
}
.head .right{
    width: 420px;
    height: max-content;
    align-items: center;
}
.head .right img{
    width: 100%;
    height: fit-content;
}
.head .left .me{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.head .left .me a{
    margin: 8px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(50deg,rgb(0, 174, 255),rgb(0, 26, 255));
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 3px 3px 8px rgb(136, 136, 136);
    transition: 0.5s;
}.head .left .me a:hover{
    color: rgb(0, 247, 255);
}
.intro{
    width: 59%;
    height: max-content;
    background: #eee;
    border-radius: 3px;
    margin: 0 auto;
    padding: 8px 15px;
    border-bottom: 2px solid rgb(189, 189, 189);
    border-right: 4px solid rgb(189, 189, 189);
    box-shadow: 4px 4px 8px rgb(185, 185, 185);
}
.intro h1{
    color: teal;
    font-size: 23px;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}
.intro p{
    color: rgb(88, 88, 88);
    font-size: 20px;
}

@media(max-width:898px){
    .head .left h1{
        font-size: 23px;
    }
    .head .left h1 span{
        font-size: 15px;
    }
    .head .right img{
        width: 80%;
        margin: 0 auto;
    }
    .intro{
        width: 81%;
    }
    .intro h1{
        font-size: 19px;
    }
    .intro p{
        font-size: 15px;
    }
}