/* импорты */
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:ital,wght@0,200..700;1,200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

@keyframes rainbow {
  0%   { color: hsl(0, 100%, 50%); }
  25%  { color: hsl(90, 100%, 50%); }  
  50%  { color: hsl(180, 100%, 50%); } 
  75%  { color: hsl(270, 100%, 50%); }   
  100% { color: hsl(360, 100%, 50%); } 
}

nav {
    display: inline-block;
    background-color: #E9ECEF;
    padding: 20px;
    border-top: 1px solid #DEE2E6;
    width: 100%;
}
 
.rainbow {
  animation: 3s infinite rainbow;
}

/* размещение чото там */
body {
    display: flex;
    background: #F8F9FA;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

header {
    display: block;
}

.div-locate {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.a-locate {
  position: relative;
  width: auto;
  text-decoration: none;
}

/* картинки аватарки */

.avatar {
    width: 75px;
    height: 75px;
}

/* работа с текстом */
.audiowide {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.cascadia {
    font-family: "Cascadia Code", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.text-section1 {
    display: block;
    color: #212529;
    align-items: center;
    font-size: 165%;
    text-align: center;
    margin: 2%;
}

.title {
    font-size: 124px;
    margin-top: 7%;
}

.text-nav {
    font-size: 22px;
    text-align: right;
}

.text-footer {
    text-align: center;
    color: #212529;
    font-size: 100%;
}

.sub-text-color {
    color: #6C757D;
}

/* футер */
footer {
    background: #E9ECEF;
    padding: 20px;
    border-top: 1px solid #DEE2E6;
}