:root {
    --red: #D64D2C;
    --hover_red: #C13817;
    --fresh_green: #005C51;
    --validation_green: #6DBE45;
    --orange: #F58220;
    --golden_yellow: #FFB732;
    --Light_beige: #f1f1f1;
    --lighter_warm_gray: #E6E6E6;
    --warm_light_gray: #D9D9D9;
    --gray: #9b9b9b;
    --dark_gray: #252729;
}

html{scroll-behavior: smooth;}

body{
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
    color: black;
}

ul{
    padding: 0px;
    margin: 0px;
    list-style-type:none;
}

section{
    display: flex;
    justify-content: center;
}

.wrraper{
    max-width: 1200px;
    margin: 5px 5%;
}

/*default icon image styling*/
.image-icon-container{
    width: 42px;
    height: 42px;
    border-radius: 100%;
    overflow: hidden;
    margin-left: 4px;
    margin-right: 9px;
}

.image-icon-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*default dropdown-menu*/
.dropdown-menu{
    position: absolute;
    top:60px;
    right: 0px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.10);
    padding: 7px;
    width: 200px;
    background-color: white;
    display: none;
    z-index: 1;
}

.dropdown-menu li{
    border-radius: 5px;
    display:flex;
    justify-content: flex-start;
    align-items: center;
}

.dropdown-menu hr{
    border: 1px var(--lighter_warm_gray) solid; 
}

/*page cover*/
#cover{
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.20);
    display: none;
}
/*************************/