html{
    margin: 0;
    padding: 0;
}

body{
    background-color: #008C80;
}

.privacy-policy{
    background-color: #F3F3F3;
    box-sizing: border-box;
    margin-right: 10%;
    margin-left: 10%;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 80%;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}

.privacy-policy h1{
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
}
.privacy-policy p{
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.content a{
    color:#008C80 ;
}

.content a:hover{
    color:#00C4B3 ;
}

.btn-back-to-main a{
    color: #F3F3F3;
    background-color: #00AB9C;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 30px;
    border: 0;
}

.btn-back-to-main a:hover{
    background-color: #00C4B3;
    }


@media screen and (min-width: 320px) and (max-width: 500px) and (orientation: portrait) {

    body{
        margin-top: 70px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 70px;
    }

    .privacy-policy{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        padding-top: 10px;
        padding-bottom:20px;
        height: auto;
        border-radius: 0;
        margin-bottom: 70px;
        
    }
}