/* Reset all default styles */
body,
h1,
h2,
h3,
p,
button,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

b {
    font-weight: 950;
}

h1 {
    font-size: 40px;
    font-weight: 800;
    /* top: 5vh; */
}

h2 {
    font-size: 30px;
    font-weight: 800;
    /* top: 5vh; */
}

h3 {
    font-size: 20px;
    font-weight: 800;
    
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
}

.separator {
    border: 0;               /* Remove default border */
    height: 1px;             /* Adjust the thickness of the line */
    background-color: #000;  /* Set the color of the line */
    
    margin-top: 20px;        /* Adjust the space above the hr */
    margin-bottom: 20px;     /* Adjust the space below the hr */
}

ul {
    /* padding-left: 0; */
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style-position: inside;
}


#privacy-policy-container {
    
    margin-top: 10vh;
    margin-left: 30vw;
    margin-right: 30vw;
    line-height: 2;
}

.email-link {
    color: black;
    text-decoration: none;
}


/* Body and main container */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    background-color: #f9f9f9;
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    /* position: relative; */
    font-weight: 590;
}