@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

span,
p {
    font-size: 90%;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
}

.heading {
    width: 100%;
    top: 0%;
    position: fixed;
    filter: blur(100);
    display: block;
        z-index: 1000;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.977);
    /* box-shadow: 2px 2px 5px 0px lightgray; */
    border-bottom: 1px solid lightgray;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.heading .headingcontent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading .headingcontent .blogname {
    width: 30%;
    font-weight: 700;
    font-family: Manrope;
}

.heading .headingcontent .navigation {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headingcontent .navigation a {
    text-decoration: none;
    font-family: Manrope;
    color: black;
}

.headingcontent .thelinks {
    width: 50%;
}

#menuside { 
    display: none;
    padding-left: 20px;
    
}

.headingcontent .thelinks a {
    padding-left: 25px;
}

.headingcontent .searchblog {
    width: 50%;
    position: relative;
}

.searchblog input {
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3cfcf;
    font-family: Manrope;
    outline: none;
}

.searchblog span {
    position: absolute;
    top: 50%;
    border-radius: 10px;
    right: 10px;
    transform: translateY(-50%);
}

.blogcontent {
    width: 100%;
    padding: 100px 100px;
}

.blogcontent .bloghead {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.blogcontent .bloghead .title {
    width: 60%;
    position: relative;
}

.blogcontent .bloghead .image {
    width: 35%;
}

.bloghead .title>span {
    font-size: 40px;
    text-align: left;
    font-family: Manrope;
    color: purple;
    font-weight: 500;
}

.bloghead .image img {
    width: 100%;
    height: auto;
}

.bloghead .image img:hover {
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
}

.title .authoranddate {
    position: absolute;
    bottom: 0;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-family: Manrope;
}

i {
    font-size: 20px;
    font-weight: 700;
}

.blogcontent .textcontent {
    width: 100%;
    padding: 0;
}

.textcontent p {
    font-family: Manrope;
}

.author,
.time {
    width: 40%;
    padding: 10px;
    border-radius: 10px;
}


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

.sharethisblog .sharethis {
    width: 40%;
}

.sharethis span {
    font-size: 30px;
    font-family: Manrope;
    color: purple;
}



.sharethisblog .social i {
    font-size: 100px;
    padding-left: 30px;
    font-size: 20px;
    padding: 10px;
    background-color: lightgray;
    border-radius: 100px;
}


.flink .theblogs {
    width: 100%;
    height: 100px;
}



.blogcontent .adminpanel {
    width: 100%;
}

.adminpanel span {
    font-weight: 700;
    font-size: 20px;
    font-family: Manrope;
    margin: 10px;
}

.blogcontent .theinputs {
    width: 100%;
    padding: 30px 0px;
}

.blogcontent .theinputs input {
    width: 100%;
    font-family: Manrope;
    margin: 10px;
    padding: 20px;
    border: 1px solid #d3cfcf;
    outline: none;
    border-radius: 10px;
}

.theinputs textarea {
    width: 100%;
    height: 300px;
    font-family: Manrope;
    resize: none;
    border-radius: 20px;
    padding: 20px;
    margin: 10px;
}

.theinputs button {
    width: 100%;
    padding: 20px;
    margin: 10px;
    background-color: black;
    color: white;
    font-family: Manrope;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#backend {
    font-family: Manrope;
    font-weight: 500;
    text-align: center;

}

.heyblog {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.blogNoti {
    width: 100%;
    padding: 10px;
    font-family: Manrope;
    text-align: center;
}

.blogNoti p {
    font-family: Manrope;
    line-height: 1px;
}

.blogNoti .link {
    width: 100%;
}

.blogNoti .link button {
    padding: 15px 30px;
    width: 30%;
    background-color: black;
    border-radius: 10px;
    border: none;
    color: white;
    font-family: Manrope;
}

