@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
#body{
    background: linear-gradient(to bottom, #4D1111, #000000);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

/* Container of the whole website */
.container{
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar{
    width: 220px;
    background-color: #1C0606;
    color: #ffffff;
    padding: 20px;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar ul{
    list-style: none;
}

/* Sidebar anchors/navigation buttons */
.sidebar a{
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 20px;
    display: block;
    padding: 10px;
    color: #DBC4AD;
    text-decoration: none;
    border-radius: 6px;
}

/* Navigation buttons hover */
.sidebar a:hover{
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 20px;
    transform: scale(1.2);
    transition: transform 0.1s ease;
    background-color: #4F4030;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Sidebar image */
.sidebaravatar{
    width: 100px;
    height: 100px;
    border-radius: 20%;
    object-fit: cover;
    margin-bottom: 20px;
}

.nav-buttons{
    font-size: 20px;
}

/* Profile container at the top of the website */
.profile-container{
    display: flex;
    align-items: center;
    margin-left: 13px;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

/* Profile container when hovered */
.profile-container:hover{
    transform: scale(1.04);
}

/* Image in the profile container */
.avatar{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Name in the profile container */
.name{
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 70px;
    color: #DBC4AD;
    font-weight: 600;
    margin-left: 12px;
}

/* Header in each section */
.header{
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #FFFFFF;
    margin-left: 50px;
    margin-bottom: 15px;
}

/* Body/text in each section */
.body{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-left: 75px;
    margin-right: 75px;
    text-align: justify;
}

/* About me container with header */
.aboutme{
    margin-bottom: 50px;
    transition: transform 0.4s ease;
}

.aboutme:hover{
    transform: scale(1.04);
}

/* About me container without the header */
.aboutme-container{
    display: flex; 
    margin-left: 100px;
    width: fit-content;
    gap: 50px;
}

.aboutme-body{
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: white;
    max-width: 700px;
    line-height: 1.6;
    margin: 0px;
    text-align: justify;
}

.side-image {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10%;
  flex-shrink: 0;
}

/* Skillset container with header */
.skillset{
    align-items: center;
    margin-left: 10px;
    margin-bottom: 50px;
    transition: transform 0.4s ease;
}

.skillset:hover{
    transform: scale(1.04);
}

/* Skillset container without the header */
.skillset-container{
    display: flex; 
    margin-left: 300px;
    width: fit-content;
    gap: 50px;
}

.skills-body{
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: white;
    max-width: 700px;
    line-height: 1.6;
    margin: 0px;
    text-align: justify;
}

/* Projects container with header */
.projects{
    align-items: center;
    margin-left: 10px;
    margin-bottom: 50px;
    transition: transform 0.4s ease;
}

.projects:hover{
    transform: scale(1.04);
}

/* Whole projects container without the header */
.projects-container{
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

/* Project image with caption */
.project-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
}

.project-item:hover{
    transform: scale(1.04);
}

.project-image{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10%;
}

.project-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-top: 10px;
}

.contacts{
    align-items: center;
    margin-left: 10px;
    margin-bottom: 50px;
    transition: transform 0.4s ease;
}

.contacts:hover{
    transform: scale(1.04);
}

.content{
    margin-left: 220px;
    padding: 40px;
}