
/* General stuff start */
html{
    font-family: 'Nanum Myeongjo', serif; 
    font-size: 16px;
    background: linear-gradient(110deg, #010E14, #01161E );
    color: #EFF6E0;
    padding: 30px;
    height: 100vh;

}

body{
    height: 100vh;
}

input{
    background-color: #010E14;
    border-color: #545963;
    color: #EFF6E0;
}


textarea{
    background-color: #010E14;
    border-color: #545963;
    color: #8D93C6;
}

a {
  color: #EFF6E0;
  text-decoration: none;
  align-self: center;
}

a:hover{
    color: #30BCED;
}
ul{
    list-style: none;
    padding: 0px;
}

/* General stuff end*/

/* Index.html start */
#main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: left;
    gap: 1.5rem;
}

#left-dummy{
    position: relative;
    flex: 1;
}

#left{
    width: 21rem;
    flex: 1;
    position: fixed;
    background-color: #01161E;
    border-radius: 1.5%;
    padding: 15px;
}

#content{
    position: relative;
    flex: 4;
    display: flex;
    justify-content: left;
    width: 100%;
    height: 100vh;
}

#navigation{
    padding: 8px;
}

.navButton{
    all: unset;
    cursor: pointer;
    background-color: transparent;
    border-bottom-color: #EFF6E0;
    color: #EFF6E0;
}

.navButton:hover{
    color: #fca311;
}

.contactInfo{
    display: flex;
    margin: 5px;
}

.contactInfoContent{
    margin-right: 5px;
    margin-bottom: 5px;
}

.contactSection{
    margin: 0px;
    align-self: center;
}

/* Index.html end*/

/* support.html start */
.commentHeader {
    display: flex;
    align-items: baseline;
    border-left: 5px solid #EFF6E0;
    padding: 5px;
}

.commentUser{
    font-size: 1.2rem;
}
.commentDate{
    color: #545963;
    padding-left: 5px;
}
#comment.p{
    margin: 10px;
}


.commentSection{
    height: 100vh;
    align-self: center;
}
.commentContent{
    border-left: thin solid #545963;
    padding: 5px;
    margin-left: 5px;
}

#supportTitle{
    align-self: center;
}

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

.commentForm * {
    margin: 5px;
}

.submitButton{
    all: unset;
    font-size: 1.2rem;
    border: thin solid #EFF6E0;
    display: inline-block;
    width: fit-content;
    border-color: #EFF6E0;
    background-color: #010E14;
    color: #EFF6E0;
    align-self:right;
    padding: 5px;
}

/* support.html end */

/* articles.html begin */

.article{
    display: flex;
}

.articleText{
    height: 100%;
    font-weight: bold;
    margin-left: 15px;
}

.articleTitle{
    font-size: 1.3rem;
    font-weight: 600;
}

.articleTitle:hover{
    color: #30BCED;
}

.articleThumbnail{
    border-radius: 3px;
    width: 320px;
    aspect-ratio: auto 16 / 9;
    border-radius: 10px;
}

.articleTimestamp{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0px;
}
/* articles.html end */
/* projects.html begin */
.project{
    display: flex;
}

.project-text{
    height: 100%;
    margin-left: 15px;
}

.project-title{
    font-size: 1.5rem;
    font-weight: 500;
}

.project-title:hover{
    color: #30BCED;
}

.project-thumbnail{
    border-radius: 3px;
    width: 320px;
    aspect-ratio: auto 16 / 9;
    border-radius: 10px;

}

.project-timestamp{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0px;
}

/* projects.html end */
/* project_overview begin */

.project-overview{
    position: relative;
    width: 100%;
    height: 100vh;
}

.project-overview-overlay{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.5) 0%,  
        rgba(0,0,0,0.5) 30%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.1) 100%
    );
    border-radius:1.5%;
}

.project-banner {
    width: 100%;
    aspect-ratio: auto 16 / 9;
    position: absolute;
    -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,  
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0) 100%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,  
        rgba(0,0,0,1) 30%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0) 100%
    );
    border-radius: 1.5%;
}

.project-overview-content{
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.project-overview-header{
    width: auto;
    height: auto;
    align-content: center;
    flex: 3;
    padding: 15px;
    margin: 0px;
}
.project-overview-header h1 {
    font-size: 30pt;
    width: auto;
    height: auto;
    align-content: center;
    padding: 15px;
    margin: 0px;
}
.project-overview-header h3{
    padding: 15px;
}

.project-article-list{
    opacity: 1;
    flex: 7;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
}

.project-article-card {
    display: flex;
    gap: 20px;
    width: 100%;
    height: auto;
}

.project-article-card img{
    border-radius: 3px;
    width: 200px;
    aspect-ratio: auto 16 / 9;
    border-radius: 10px;
}

.project-article-card h1{
    
}

.project-article-card h2{

}
/* project_overview end */
