*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

:root {
    --font-color: #ffff;
    --special-color: cadetblue;
    --special-color-2: #1F2937;
}

/* wallpaper */
body {
    min-height: 100dvh;
    background-image: url('../../assets/photo/wallpaper-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    backdrop-filter: blur(3px);
    font-family: 'Nunito', sans-serif;
    z-index: -11;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* container */

.container {
    width: 100%;
    min-height: 100dvh;
    background-color: rgba(16, 21, 21, 0.95);
    z-index: -10;
}

/*----------header----------*/
header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--special-color-2);
    z-index: 10;
}

/* navbar */
nav {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-bottom: 0.5px solid cadetblue; */

}

#container-header-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}


/* header items */
.header-left-items{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.header-left-items>p{
    font-size: 1rem;
    font-weight: 600;
    color: var(--special-color);
}


.header-center-items{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.header-center-items>li>a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--font-color);
}


.header-right-items{
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}
.header-right-items>button{
    width: 60%;
    height: 35px;
    font-size: .9rem;
    color: var(--font-color);
    border: none;
    border-radius: 4px;
    background-color: var(--special-color);
}

/* ------------main------------- */
main {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 170px;

}

/* --------------home page------------- */
#home-page {
    width: 80%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.descripttion-home {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-bottom: 10px;
}

/* text descripttion */
.text-descripttion-home {
    width: 80%;
}

.text-descripttion-home>* {
    color: var(--font-color);
}

.text-descripttion-home>h1 {
    font-size: 2.375rem;
    color: var(--special-color);
}

.text-descripttion-home>h3>span {
    color: var(--special-color);
    font-size: 1.4375rem;
}

.text-descripttion-home>p {
    line-height: 25px;
    font-weight: 500;
}

/* link descripttion in home */
.links-descripttion-home {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
}

.links-descripttion-home>a>i {
    font-size: 1.7rem;
    color: var(--special-color);
}

/* stats */
.stats{
    width: 67%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--special-color-2);
    margin-top: 20px;
    border: none;
    border-radius: 8px;
}
.stats-item{
    width: calc(100% / 3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    position: relative;
}
.stats-item:nth-of-type(1):after{
    content: "";
    background-color: gray;
    width: 1.3px;
    height:55px;
    position: absolute;
    right: 0;
}
.stats-item:nth-of-type(2):after{
    content: "";
    background-color: gray;
    width: 1px;
    height:55px;
    position: absolute;
    right: 0;
}
.stats-item-top{
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 13px;
}
.stats-item-top:nth-of-type(1){
    padding-left: 16px;
}
.stats-item-top>p{
    color: var(--special-color);
    font-weight: 800;
}
.stats-item-down>p{
    color: var(--font-color);
}

/* image me */
.image-me-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: auto;
    /* background-color: aqua; */
}

.image-me-home::before {
    content: "";
    position: absolute;
    background-color: rgba(95, 158, 160, 0.64);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 5px solid var(--special-color-2);
    z-index: -1;

}
.image-me-home>a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-me-home>a>img {
    width: 90%;
    height: 90%;
    opacity: 1;
    margin-right: 8px;
}


/* ---------about-page------------ */
#about-page {
    width: 80%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* title about me */
.title-about{
    min-width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-about>h2{
    color: var(--font-color);
}
.title-about>h2>span{
    color: var(--special-color);
}

/* container info me */
.info-me{
    min-width: 40%;
    height: max-content;
    background-color: aqua;
}
/* image me */
.image-about-me{
    width: 200px;
    height: 200px;
}
.image-about-me>a{
    width: 100%;
    height: 100%;
}
.image-about-me>a>img{
    width: 100%;
    height: 100%;
}