/* CSS is a language used to style web pages and make them look nice and colorful. */
html {
    scroll-behavior: smooth;
}

body {
    /* This line defines the background color of the entire page. You can click on the blue colored box near '#53697c' and change the background color to any shade you like, just like when we used to play with colors in MS Paint during our childhood. Edit here 👇 */
    background-color: pink;
    font-family: "Roboto", sans-serif;
}

.layout {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: auto;
}

.navbar {
    position: fixed;
    right: 18%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 5%;
}

.logo img {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 8px;
}

.navbar_list {
    list-style: none;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    padding: 0;
    margin-left: 2rem;
}

.navbar_content {
    padding-top: 2rem;
}

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

.navbar_content:hover {
    text-decoration: solid underline;
}

.main_content {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    margin: -1% auto;
    margin-left: -4%;
}

.home_page {
    height: 100vh;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.home_heading {
    position: relative;
    width: 50%;
}

.intro {
    width: 40rem;
    color: #fff;
    font-size: 120px;
    font-weight: bolder;
    line-height: 118px;
    z-index: 1;
}

.sub_heading {
    width: 80%;
    padding-top: 2rem;
    color: #fff6d5;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    z-index: 1;
}

.profile_pic {
    margin-left: -3rem;
}

.profile_pic img {
    width: 40rem;
    height: 48rem;
    object-fit: cover;
    border-radius: 24px;
}

.about_page {
    height: 100vh;
    width: 100%;
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
}

.about_heading {
    position: absolute;
    top: 16%;
    left: -20%;
    color: #fff;
    font-size: 200px;
    font-weight: bolder;
    z-index: 1;
    transform: rotate(-90deg);
    z-index: -1;
}

.right_container {
    display: flex;
    flex-direction: row;
    margin-left: 20%;
}

.about_me {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
}

.about_me_contents {
    display: flex;
    flex-direction: column;
    margin: 2rem 3rem;
}

.about_me_contents span {
    font-size: 1.3rem;
    font-weight: 500;
    padding-top: 8px;
}

.skills {
    margin: -2rem 0 0 -2rem;
    color: #fff;
}

.experiences {
    display: grid;
    grid-template-columns: auto auto;
    margin-left: -2rem;
}

.info {
    padding: 4rem;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    color: #132433;
    font-weight: 400;
}

.info span {
    padding-top: 1rem;
    font-size: 5rem;
    font-weight: 900;
    color: #f7d0ac;
}

.description {
    width: 90%;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.portfolio {
    height: 100vh;
    width: 100%;
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
}

.portfolio_heading {
    position: absolute;
    top: 16%;
    left: -32%;
    color: #fff6d5;
    font-size: 200px;
    font-weight: bolder;
    z-index: 1;
    transform: rotate(-90deg);
    z-index: 1;
}

.portfolio_container {
    width: 100%;
    height: 100%;
    margin: -20% 0 0 20%;
    display: grid;
    grid-template-rows: 3fr 1fr 1fr 2fr 2fr 3fr;
    grid-template-columns: 2fr 3fr 1fr 2fr;
    gap: 1ch;
    min-height: inherit;
    flex: 2 0 54rem;
}

.bento__item {
    height: 100%;
    width: 100%;
    grid-column: var(--columns, span 1);
    grid-row: var(--rows, span 1);
    background-color: pink;
    border-radius: 1rem;
}

.git {
    width: 34rem;
    height: 20rem;
    object-fit: cover;
    /* border-radius: 24px; */
}
