@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    box-sizing: border-box;

    color: #f2f2f2;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #222222;
}

.main-content {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    border-left: 0.031rem solid #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 14rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.main {
    flex: 1;
    margin-left: 2rem;
    padding: 2rem;
}

.sidebar-header-container {
    display: flex;
    justify-content: flex-end;
    border-top: 0.031rem solid #f2f2f2;
}

.menu-header {
    color: #f2f2f2;
    font-size: 0.8rem;
    padding: 0.5rem 0.5rem 0 0;
}

.sidebar-content {
    padding: 1.25rem;
    gap: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.sidebar-content-icons {
    padding: 1.25rem;
    gap: 1rem;
    display: flex;
}

.sidebar-anchor {
    color: #f2f2f2;
    text-decoration: none;
}

.sidebar-anchor:hover {
    color: gold;
    transition: color 0.1s ease-in;
}

.social-icon {
    width: 25%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) rotateY(10deg);
}

.section {
    border-top: 0.031rem solid #f2f2f2;
    padding: 1rem;
    margin-bottom: 4rem;
}

.section-header {
    font-weight: 500;
    font-size: 2.5rem;
}

.section-text {
    font-size: 1.5rem;
}