:root{

    --boerder-color: #E2E2E2;
    --bold-text-color: #5e5e5e;
    
}

*{
    margin: 0;
    padding: 0;
    font-family: "Raleway", Helvetica, sans-serif;
    overflow-x: hidden;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--bold-text-color);
    
}

.column{
    display: flex;
    flex-direction: column;
}


nav{
    width: 100vw;
    padding: 1.5rem 0;
    /* background-color: aqua; */
    border: 1px solid var(--boerder-color);
}
a{
    text-decoration: none;
    font-size: .8rem;
    padding: 0 1rem;
}
.logo{
    position: relative;
    padding: 0 4rem;
    font-weight: 600;
}
.logo::before{
    content: '';
    position: absolute;
    background-color: var(--boerder-color);
    height: 5rem;
    width: 1px;
    right: 0;
    top: -2rem;
}

.border{
    border-right: 2px solid var(--boerder-color);
}



.content{
    width: 84vw;
    min-height: 100vh;
    padding: 2rem 8vw;
    display: flex;
    /* background-color: aqua; */
}



footer{
    /* position: fixed; */
    /* bottom: 0; */
    width: 100vw;
    background-color: aqua;
}

.left-content-space{
    height: 100vh;
    width: 25vw;
    /* display: block; */
    /* background-color: antiquewhite; */
}

.coder{
    width: 5rem;
    clip-path: polygon(50% 3%, 90% 25%, 90% 75%, 51% 97%, 10% 75%, 10% 24%);
}

.project-name{
    font-size: 3rem;
    font-weight: 800;
    font-size: 2rem;
}

.project-discription{
    margin-top: 4rem;
    line-height: 2rem;
}

.content-margin{
    margin: 0 2vw;
}

.ad-card{
    width: 100%;
    height: 100vh;
    background-color: antiquewhite;
    /* background-color: #5e5e5e; */
}

.card{
    width: 50vw;
    margin: 0 0 4rem;
}

.padding{
    padding: 3rem;
}

.title{
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.date{
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: 800;
    font-size: .7rem;

}

.author{
    /* background-color: aqua; */
    width: 15rem;
    height: 100%;
    border-left: 1px solid var(--boerder-color);
}
.profile{
    width: 3rem;
    border-radius: 50%;
}

.author-info{
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: end;
}

.author-name{
    margin-right: 1rem;
    font-size: .7rem;
    cursor: pointer;
    text-align: end;
}

.img-frame{
    overflow:hidden;
}

.cover-img{
    width: 100%;
    transform: scale(1);
    transition: .2s;
}

.cover-img:hover{
    transform: scale(1.05);
}

.card-header{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--boerder-color);
    border-left: 1px solid var(--boerder-color);
    border-right: 1px solid var(--boerder-color);
}

.content-border{
    border: 1px solid var(--boerder-color);
}

.content-p{
    --max-lines: 3;

    text-transform: none;
    letter-spacing: 1px;
    line-height: 1.8rem;
    margin: 3rem 0;

    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--max-lines);

}

.toggle{
    display: block;
}

.card-cta{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.card-cta > button{
    padding: 1rem 2rem;
    font-weight: 800;
    background-color: transparent;
    border: 1px solid var(--boerder-color);
    transition: .1s;
    cursor: pointer;
}

.hover:hover{
    transition: .1s;
    border-color: aquamarine;
    color: aquamarine;
}
.fox-img{
    /* position: relative; */
    height: 1rem;
}

/* .fox-img::before {
    background-image: url('https://github.com/reyanjoh/template-literals-imgs/blob/main/blog-test-imgs/logo.jpg?raw=true');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
} */



