body{
    margin:0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    flex-direction: column;
}

body::-webkit-scrollbar {
    width: 6px;
    height:8px;
}

body::-webkit-scrollbar-track {
    background: none;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 100px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.Divisor{
    width: 25px; 
    height: 25px; 
    border-radius: 5px;
    transform: rotate(45deg);
    margin: 0 auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background: #618DFF;
    display: flex;
}

.DownIndicatorContainer{
    
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: -30px auto;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);

}