@font-face {
    font-family: Arial Narrow Bold; /* Имя шрифта */
    src: url('./assets/fonts/Nunito-Bold.ttf'); /* Путь к файлу со шрифтом */
   }
*{
    background-color: #fff;
    margin: 0;
    font-family: Arial Narrow Bold;
}
.content{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: #2320be;
}
.logo {
    width: 12vh;
    height: 15vh;
    margin-top: 3%;
    margin-bottom: 1.5%
}
.logo img{
    width: 100%;
}
.privacy_policy{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 80%;
    margin-top: 1.5%
}
.privacy_policy h1{
    align-self: center;
    margin-bottom: 20px;
}
.privacy_policy p{
    align-self: flex-start;
    margin-bottom: 15px;
}
.privacy_policy h2{
    align-self: flex-start;
    margin-bottom: 15px;
}
.privacy_policy a{
    color: #29aa20;
    text-decoration: none;
}