#navbar {
    position: static;
    top: 0;
    left: 0;
    width: calc(100% - 30px);
    background-color: white;
    padding: 15px;
    
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    transition: all .5s ease-in-out;
}
#navbar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#content {
    padding-top: 0;
}


.logo {
    font-size: 40px;
    font-weight: bold;
    color: #ff3333;
    cursor: pointer;
}
.logo svg {
    margin-left: -12px;
    height: 30px;
    transform: rotate(-7deg);
}
.portfo-io {
    font-size: 40px;
    font-weight: 900;
}
#navbarIcon {
    cursor: pointer;
    padding: 7px 0;
}
