* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Calibri, sans-serif;
    font-size: 16px;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: white;
    padding: 0;
    display: flex;
    justify-content: center;
}

h2 {
    font-size: 25px;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#privacy{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 120px;
    background-color: white;
    text-align: center;
    color: black;
}

#privacy button{
    background-color: rgb(26, 6, 72);
    color: white;
    margin-top: 10px;
    width: 120px;
    height: 40px;
    font-size: 16px;
    font-weight: 700;


    cursor: pointer;
}

#privacy h1{
    font-size: 45px;
    color: rgb(26, 6, 72);
}

#extension{
    text-decoration: underline;
    font-size: 30px;
    color: rgb(255, 80, 1);
}


#privacy b{
    color:rgb(26, 6, 72);
    text-decoration: underline;

    cursor: pointer;
}