body {
    background-color: #0b0e12;
    color: #bfc7d1;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
}

/* main horizontal layout */
.wrapper {
    width: 900px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* left and right sides */
.left, .right {
    width: 200px;
}

/* center */
.center {
    width: 400px;
    text-align: center;
}

/* image */
.center img {
    width: 100%;
    border: 1px solid #1c222b;
}

/* caption */
.caption {
    font-size: 11px;
    color: #6c7685;
    margin-top: 5px;
}

/* sections */
.section {
    margin-bottom: 30px;
}

/* titles */
.title {
    font-size: 10px;
    color: #6c7685;
    border-bottom: 1px solid #1c222b;
    margin-bottom: 5px;
}

/* links */
a {
    display: block;
    color: #8f9bad;
    text-decoration: none;
    margin-bottom: 3px;
}

a:hover {
    color: #ffffff;
}

/* small text */
.text {
    font-size: 11px;
    color: #7d8796;
}


body {
    background-color: #05070a;
    color: #c4ccd6;
    font-family: Arial, Verdana, sans-serif;
}

/* whole layout */
.page {
    width: 1000px;
    margin: 40px auto;
    display: flex;
}

/* side images */
.side {
    width: 200px;
}

.side img {
    width: 100%;
    margin-bottom: 20px;
    filter: grayscale(100%) contrast(140%);
    border: 1px solid #1a1f26;
}

/* center content */
.content {
    width: 600px;
    padding: 0 30px;
}

/* main title */
.main-title {
    font-size: 32px;
    color: #e0e6ef;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

/* headers */
h2 {
    margin-top: 40px;
    color: #9aa6b8;
    font-size: 16px;
}

/* text */
p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* aggressive slogans */
.slogan {
    font-size: 20px;
    color: #d9dee6;
    margin: 30px 0;
    letter-spacing: 2px;
}

/* warning text */
.warning {
    font-size: 22px;
    color: #ffffff;
    margin: 30px 0;
}

/* final line */
.final {
    font-size: 24px;
    color: #ffffff;
    margin-top: 50px;
}

/* footer */
.footer {
    margin-top: 50px;
    font-size: 11px;
    color: #5f6875;
}
.container {
    width: 900px;
    margin: 60px auto;
}

h1 {
    color: #d6dbe3;
    font-size: 20px;
    margin-bottom: 20px;
}

/* grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* entry squares */
.entry {
    background-color: #0f141a;
    border: 1px solid #1f2630;
    padding: 10px;
    min-height: 200px;
}

/* date */
.entry-date {
    font-size: 12px;
    color: #8b97a8;
    margin-bottom: 8px;
}

/* images */
.entry img {
    width: 100%;
    margin-bottom: 8px;
    filter: grayscale(100%) contrast(110%);
}

/* text */
.entry-text {
    font-size: 12px;
    color: #c3ccd8;
}

/* hover effect */
.entry:hover {
    border-color: #3a4555;
}

/* ========================= */
/* PROFILE SYSTEM ADD-ON */
/* ========================= */

.profile-main{

width: 800px;
margin: auto;
margin-top: 40px;

}


.profile-title{

text-align: center;
font-size: 28px;
letter-spacing: 2px;

}


.profile-subtitle{

text-align: center;
color: #777;
margin-bottom: 30px;

}


/* expandable containers */

.profile-container{

border-top: 1px solid #333;
margin-top: 15px;

}


.profile-header{

padding: 12px;
cursor: pointer;
color: #aaa;
transition: 0.2s;

}


.profile-header:hover{

background-color: rgba(255,255,255,0.05);
color: #fff;

}


.profile-content{

display: none;
padding: 12px;
color: #bbb;
line-height: 1.6;

}



/* photo layout */

.profile-photo-row{

display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 40px;

}


.profile-photo{

position: relative;
width: 240px;

}


.profile-photo img{

width: 100%;
border: 1px solid #444;

}


/* hover reveal text */

.profile-photo-caption{

position: absolute;
bottom: 0;
left: 0;

width: 100%;

background: rgba(0,0,0,0.85);
padding: 8px;

opacity: 0;
transition: opacity 0.3s;

font-size: 13px;

}


.profile-photo:hover .profile-photo-caption{

opacity: 1;

}
