*{
    /* CSS Reset */
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;

    /* Default Bootstrap's Font Styling */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #212529;
}


/* Default Bootstrap's Heading Styling */
h1, h2, h3, h4, h5, h6{
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}


/* Custom Styling Begins */

/* Header */

header{
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: #282a35;
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav ul{
    list-style-type: none;
}

.nav ul li{
    display: inline-block;
}

.nav ul li a{
    text-decoration: none;
}

.home-icon{
    color: white;
    font-size: 2rem;
    transition: 0.3s ease-out;
}

.logo{
    font-size: 2rem;
    color: white;
}

/* Apply hover effects only on devices which support hover and have a pointing device with high accuracy such as a mouse. */
@media (hover: hover) and (pointer: fine) {
    .home-icon:hover{
        color: greenyellow;
    }
}

.home-icon:active{
    color: greenyellow;
}


/* Main */

.privacy-policy-main{
    padding: 8rem 20% 2rem 20%;
}

@media (max-width: 768px) {
    .privacy-policy-main{
        padding: 8rem 10% 2rem 10%;
    }
}

@media (max-width: 425px) {
    .privacy-policy-main{
        padding: 8rem 2rem 2rem 2rem;
    }    
}

.privacy-policy-main ul li{
    margin-left: 1rem;
}

/* Footer */

footer{
    padding: 2rem 20% 4rem 20%;
    background-color: black;
}

.footer-div{
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    padding-right: 2rem;
}

.contacts-title, .social-media-title, .useful-links-title, .email-title{
    color: yellowgreen;
    font-weight: 500;
    padding: 2rem 0 1rem 0;
}

.contact{
    color: white;
}

.social-media, .useful-link, .contact-link{
    color: white;
    display: block;
    text-decoration: none;
}

.copyright-par{
    color: white;
    padding-top: 2rem;
    border-top: 1px solid yellowgreen;
    margin-top: 4rem;
}

@media (max-width: 1023px) {
    .footer-div{
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 768px) {
    footer{
        padding: 2rem 10% 4rem 10%;
    }

    .footer-div{
        grid-template-columns: 100%;
    }
}

@media (max-width: 425px) {
    footer{
        padding: 2rem 2rem 4rem 2rem;
    }  
}