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

div#side-bar{
    width: 250px;
    min-height: calc(100vh - 140px);
    height: auto;

    background-color: #6B56FF;

    border-radius: 30px;
    margin: 30px;
    margin-right: 15px;

    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 10;
}

div#buttons {
    width: 100%;
}

button.side-button{
    width: 100%;
    height: 50px;

    border-radius: 10px;
    border: none;
    
    background-color: #9889ff;
    box-shadow: 2px 2px 2px #3e23ff;

    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    cursor: pointer;
}

button.side-button img{
    height: 30px;
    margin: 0 20px;
}

button.side-button p{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;

    color: #ffffff;
    font-size: 20px;
    margin: 0;
}



p#brand{
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    color: #ffffff;
    font-size: 50px;
    margin: 30px;
    margin-top: 0;
    margin-bottom: -15px;

    text-shadow: 2px 2px 2px #3e23ff;

    cursor: pointer;
}

p#slogan{
    font-family: 'Poppins', sans-serif;
    font-weight: 200;

    color: #ffffff;
    font-size: 15px;
    margin: 0;
    margin-bottom: 50px;

    text-shadow: 2px 2px 2px #3e23ff;

    cursor: pointer;
}

.menu-container {
    display: none !important;
}



@media (max-width: 1200px) {
    div#index {
        display: flex;
        flex-direction: column;
    }

    .menu-container {
        display: none !important;
    }

    div#side-bar{
        width: calc(100vw - 160px);
        min-height: 80px !important;
        height: 80px !important;
        padding: 30px 50px;
    
        background-color: #6B56FF;

        flex-direction: row;

        margin-bottom: 0;
    }

    div#buttons {
        display: flex;
        justify-content: flex-end;
    }

    button.side-button{
        width: 50px;
        height: 50px;
    
        margin-bottom: 0;
        margin: 5px;
    
        justify-content: center;
    }
    
    button.side-button p{
        display: none;
    }
    
    p#brand{
        margin: 0;
        margin-left: 20px;
    }

    p#slogan{
        display: none;
    }
  }


  @media (max-width: 660px) {

    #buttons{
        display: none !important;
    }

    #brand{
        font-size: 30px !important;
    }

    #side-bar{
        padding: 20px !important;
        margin: 20px !important;
        margin-bottom: 0 !important;

        width: calc(100vw - 80px) !important;
        min-height: 30px !important;
        height: 30px !important;

    }

    #form-p{
        margin-bottom: 0px;
    }
}