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

html {
    background-color: black;
    scroll-behavior: smooth;
    color: #fff;
}

.light-theme {
    background-color: #fff;
    color: black;
}

body {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

/*Header style start */

.header {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.header_active {
    position: fixed;
    transition: .2s linear;
    z-index: 999;
    background-color: rgb(60, 60, 60, 0.7);
}

.nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 50px;
    list-style: none;
}

.nav-link {
    padding: 0 20px;
    line-height: 50px;
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
    color: #BDAE82;
}

.nav-link:hover {
    color: #fff;
}

.nav-list {
    display: none;
}

.nav-list.active {
    display: flex;
}

.hamburger .line {
    width: 40px;
    height: 3px;
    background-color: #BDAE82;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line:nth-child(1),
.hamburger.is-active .line:nth-child(3) {
    width: 35px;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateX(10px) rotate(45deg);
    -ms-transform: translateX(10px) rotate(45deg);
    -o-transform: translateX(10px) rotate(45deg);
    transform: translateX(10px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateX(10px) rotate(-45deg);
    -ms-transform: translateX(10px) rotate(-45deg);
    -o-transform: translateX(10px) rotate(-45deg);
    transform: translateX(10px) rotate(-45deg);
}

/*Header style end */

.section-person {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-align: center;
}

.person-foto {
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgb(0 0 0 / 60%);
    border-radius: 25px;
}

h2 {
    max-width: 50%;
    border-bottom: #BDAE82 2px solid;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #BDAE82;
}

.wrapp {
    display: flex;
    flex-direction: row;
}

.left-side {
    width: 30%;
    padding: 1%;
}

.right-side {
    width: 70%;
    padding: 1%;
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-item {
    position: relative;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    padding-left: 30px;
}


.icon {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 1px;
    left: 0px;
}

.discord_icon {
    background-image: url('../assets/images/discord.svg');
}

.phone_icon {
    background-image: url('../assets/images/phone.svg');
}

.mail_icon {
    background-image: url('../assets/images/mail.svg');
}

.map_icon {
    background-image: url('../assets/images/map.svg');
}

.icon:hover {
    filter: invert(26%) sepia(15%) saturate(638%) hue-rotate(7deg) brightness(92%) contrast(87%);
}

.link {
    text-decoration: none;
    color: #fff;
}

.link:hover {
    color: #BDAE82;
}

td {
    border: 1px ridge #dad8d5;
    padding: 1%;
}

ol {
    margin-left: 30px;
}

.skill {
    margin-left: 30px;
}

.code {
    white-space: pre-line;
}

.section {
    width: 100%;
    padding: 10px;
    padding-bottom: 35px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.projects__icon {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.projects__icon:hover {
    border: rgb(226, 226, 226) 2px solid;
}


/*Footer style start */

.footer-wrapp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 5px 20px;
    font-size: 20px;
}

.footer-data {
    display: flex;
    align-items: center;
}

.copyright {
    padding-right: 20px;
}

.github {
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
    transition: .3s;
    cursor: pointer;
}

.github:hover {
    color: #BDAE82;
    cursor: pointer;
}

.rss {
    width: 135px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../assets/images/rss.svg');
    transition: .3s;
}

.rss:hover {
    filter: invert(26%) sepia(15%) saturate(638%) hue-rotate(7deg) brightness(92%) contrast(87%);
}

/*Footer style end */


/* Media start */

@media screen and (max-width: 768px) {
    .section {
        width: 100%;
    }

    ::-webkit-scrollbar {
        width: 0;
    }
}

/* Media end */