.page-title {
    color: #272727;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
}

.page-title-active {
    color: #be3c3c;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
}


.page-title:hover {
    color: #be3c3c;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
}

.content {
    color: #272727;
    font-size: clamp(1rem, 2vw + 1rem, 2.5rem);
    display: flex;
    width: 50%;
    flex-direction: column;
    text-align:justify;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
}

nav {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    align-items: center;
    list-style: none;
}

nav a {
    height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
}

nav li:first-child {
    margin-right: auto;
}

nav li {
    margin: 20px;
    text-align: center;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding-top: 10vh;
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-color: #ffffff;
    transition: 0.3s;
}

span{
    font-weight: 450;
}

.sidebar .close-btn {
    position: absolute;
    /* Position relative to the sidebar */
    top: 42px;
    right: 20px;
    cursor: pointer;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

a .socials{
    padding: 10px;
}

.socials:hover{
    opacity: 0.5;
}
* {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;

}

h2 {
    color: #be3c3c;
    align-self: flex-start;
    font-weight: 400;
}
.hello{
    color: #272727;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 35px;
    gap: 20px;
}


.contact{
    text-align: center;
    color: grey;
    font-weight: 400;
}


main{
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.cvmain{
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: start;
}

h3{
    font-size: 120%;
    font-weight: 400;
}

h4{
    color: gray;
    font-weight: 350;
}
.contentcv{
    color: #272727;
    display: grid;
    grid-template-columns: 1fr 5fr;
    width: 70%;
    row-gap: 30px;
    column-gap: 20px;
}

p{
    align-self: flex-start;
}

@media (max-width: 640px){
    .contentcv{
        grid-template-columns: 100%;
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .hideOnMobile {
        display: none;
    }

    .sidebar {
        width: 100vw;
    }
    .content{
        width: 90%;
    }
    nav ul{
        width: 100%;
    }

}

@media (min-width: 1024px) {
    .hideOnDesktop {
        display: none;
    }

    .sidebar{
        display: none !important;
    }

    .close-btn {
        display: none;
    }
    .content{
        width: 65%;
    }
    nav ul{
        width: 90%;
    }
}

@media (min-width: 1400px){
    .content{
        width: 55%;
    }
    nav ul{
        width: 70%;
    }

    .cvmain{
        width: 100%;
    }

    .contentcv{
        width: 60%;
    }
}