*
{
  margin: 0;
  padding: 0;
}

body
{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  display: flex;
  margin-top: 50px;
}

.root{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/bg.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow-y: auto;
    
}

.header{
    width: 100%; 
    height: 50px;
    font-size: 35px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
    background-color: rgb(0, 0, 0);
    text-align: center;
    color: rgb(255, 250, 239);
    font-family: 'Didact Gothic', sans-serif;
    line-height: 130%;
    position: sticky;
    top: 0px; left: 0px;
    z-index: 2;
}

a {
    color: #009c9c;
}

.header a {
    color: rgb(255, 255, 255) !important;
    text-decoration: none
}

.block{
    margin: auto;
    width: 80%;
    height: auto;
    padding-bottom: 1%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
}

.first p{
    font-size: 16px;
    margin: 16px 0px;
    margin-left: 3%;
    margin-right: 3%;
}
.first ul{
    margin-left: 5%;
}

.footer{
    width: 100%; 
    height: 40px;
    font-size: 15px;
    text-align: center;
    color: white;
    background-color: black;
    font-family: 'Didact Gothic', sans-serif;
    line-height: 250%;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.privacy_policy_main{
    font-size: 40px;
    font-weight: 600;
    padding:2% 3% 1%;
}

.privacy_policy_underline{
    margin: 3%;
    height: 3px;
    width: 40px;
    margin-top: 3px;
    margin-bottom: -1px;
    border-radius: 1.5px;
    background-color: black;
}

.home_button{
    margin-left:1%;
    height: 75px;
    width: 75px;
    filter: opacity(0.5) drop-shadow(0 0 0 rgb(0, 0, 0));
    transform: rotate(180deg);
}

@media (max-width: 450px){
    .block{
        width: 100%;
    }

    .privacy_policy_main{
        font-size: 30px;
        font-weight: 600;
        padding:2% 3% 1%;
    }

    .first ul{
        margin-left: 8%;
    }
}