:root{
    --white: #ffffff;
    --purple: #8d80a8;
    --darkpurple: #413063;
    --blue: #3b5998;
}

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

html, body{
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    /* Preventing Scroll In Desktop For Sticky Dock*/
    overflow-y: hidden;
}

.round_button{
    border-radius: 8px;
    height: 2em;
    border: 1px solid #3b5998;;
    background-color: white;
    color: black;
    transition: ease 0.25s;
}

.round_button:hover{
    background-color: var(--blue);
    color: white;
}

.shadow_box{
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.2);
}