*{
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

body{
    background-color: #f6f8fc;
}

.content{
    height: 100vh;
    width: 100vw;
    padding: 1rem;
    background-color: #ffff;
}

.disable-scroll{
    height: 100%;
    overflow: hidden;
}

#modal{
    display: none;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    position: fixed;
    background-color: rgba(0, 0, 0, .4);
}

