:root {
    --main-font-color: aliceblue;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(127, 198, 184);
    font-family: "Ubuntu", sans-serif;
}

.title a {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 1;
    text-decoration: none;
    color: var(--main-font-color);
}

.title a:hover {
    opacity: 0.5;
}

.privacy-content {
    color: var(--main-font-color);
    margin-top: 3vh;
    line-height: 1.6;
}

.privacy-content .last-updated {
    font-style: italic;
    margin-bottom: 2vh;
}

.privacy-content h2 {
    margin-top: 3vh;
    margin-bottom: 1vh;
}

.privacy-content p {
    margin-bottom: 1vh;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 5vh;
    margin-bottom: 1vh;
}

.privacy-content a {
    color: var(--main-font-color);
    text-decoration: underline;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 1;
}

.privacy-content a:hover {
    opacity: 0.5;
}

@media (orientation: landscape) {
    .title {
        font-size: 10vw;
        font-weight: bold;
        color: var(--main-font-color);
        margin-left: 10vw;
    }

    .privacy-content {
        font-size: 1.5vw;
        margin-left: 10vw;
        margin-right: 10vw;
    }

    .privacy-content h2 {
        font-size: 2vw;
    }
}

@media (orientation: portrait) {
    .title {
        font-size: 10vh;
        font-weight: bold;
        color: var(--main-font-color);
        margin-left: 5vh;
    }

    .privacy-content {
        font-size: 3.5vw;
        margin-left: 5vh;
        margin-right: 5vh;
    }

    .privacy-content h2 {
        font-size: 5vw;
    }
}