@font-face {
    font-family: "helvetica";
    font-style: normal;
    /* Браузер сначала попробует найти шрифт локально */
    src: local("helvetica"),
        /* Если не получилось, загрузит woff2 */
        url("/fonts/helvetica/HelveticaMedium.ttf") format("ttf"),
        /* Если браузер не поддерживает woff2, загрузит woff */
        url("/fonts/helvetica/HelveticaMedium.woff") format("woff");
}

/* Теперь можно использовать шрифт */
body {
    font-family: "helvetica", "Arial", sans-serif;
}

BODY {background-color: #000000;   
    }

p {
    color: #ffffff;
}
h1 {margin-top: 8%;
    margin-bottom: 0px;
    text-decoration: none;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
}
h2 {
    text-decoration: none;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 40px;
}

h3 {
    text-decoration: none;
    font-size: 18px;
    color: #565656;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: 100;
}

h4 {
    text-decoration: none;
    font-size: 18px;
    color: #565656;
    text-align: left;
    margin-left: 20%;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 100;
}

h5 {
    text-decoration: none;
    font-size: 18px;
    color: #565656;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 40px;
    font-weight: 100;
}

.list {text-decoration: none;}
li {color: #ffffff;
     margin-left: 20%;
    line-height: 150%;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
color: #ffffff;}

   A:link {
       text-decoration: none;
       /* Убирает подчеркивание для ссылок */
   }

   A:visited {
       text-decoration: none;
   }

   A:active {
       text-decoration: none;
   }

   A:hover {
       text-decoration: underline;
       /* Делает ссылку подчеркнутой при наведении на нее курсора */
       color: rgb(197, 101, 41);
       /* Цвет ссылки */
   }


         @media (max-width: 480px){
h1 {
    font-size: 30px;
}

h2 {
    font-size: 18px;
}

li {

    margin-left: 2%;
    margin-bottom: 10px;
}
h4 {
    margin-left: 2%;
}
h5 {
    margin-top: 100px;
}
}

