@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight:500;
    font-style: normal;
    background: #ffffff;
    background: linear-gradient(160deg, rgba(255, 255, 255, 1) 0%, rgba(238, 238, 238, 1) 50%, rgba(153, 153, 153, 1) 100%);
    height: 100%;
    
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.mainContainer {
    display: grid;
    grid-template-columns: 0.12fr 1fr;
    gap: 5rem;
    height: 100vh;
    .nav {
        display: grid;
        grid-template-rows: repeat(5, 5rem);
        gap: 0.2rem;
        height: fit-content;
        .navButton {
            align-content: center;
            border-bottom-right-radius: 5px;
            border-top-left-radius: 5px;
            transition: 0.7s;
            /* transition-delay: 0.2s; */
            background-color: #ddd;
            text-align: right;
            letter-spacing: 4px;
            font-size: larger;
        }
        .navButton:hover {
            background-color: transparent;
            color: blue;
            cursor: pointer;
            transform: translateX(10%);
        }
    }
    .selectedContent {
        padding: 10px;
        box-shadow: 0px 1px 40px 1px silver;
        border: 1px none transparent;
        border-radius: 5px;
        background-color: white;
        max-height: 90vh;
        margin-right: 30px;

        & .contentHeader {
            background-color: white;
            border-bottom: 1px dotted silver;
            padding: 20px;
            font-size: xx-large;
            animation: fadein 1.5s;

        }
        & .contentActual {
            margin-top: 20px;
            padding: 20px;
            animation: fadein 1.5s;

            & ul {
                list-style: none;
                padding-left: 0.2em;
                line-height: 1.5em;
            }

            & ul li::before {
                content: "";
                display: inline-block;
                width: 0.6em;
                height: 0.6em;
                margin-right: 0.6em;
                background-color: blue;
                border-radius: 50%;
            }
        }
        & .upcomingProjects {
            & h3 {
                margin-bottom: 0px;
            }
        }
    }
}
body {
    opacity: 1;
}