@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Titillium+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*
font-family: 'Nunito', sans-serif;
font-family: 'Titillium Web', sans-serif;
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 10px;
}
body {
    background: linear-gradient(225deg, rgb(73, 168, 219) 6%, rgb(31, 77, 79));
}
.wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0rem 0rem 1rem 1rem rgb(24 24 24 / 20%);
    border-radius: 3rem;
}
.header {
    width: 100%;
    height: 6rem;
    background: linear-gradient(225deg, rgb(255, 255, 255) 6%, rgb(150, 150, 150));
    border-radius: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-text {
    font-size: 3.6rem;
    font-family: 'Titillium Web', sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 5.4rem;
    color: rgb(31, 77, 79);
    margin-left: 2rem;
}
.header-block {
    width: 12rem;
    height: 4rem;
    border-radius: 2rem;
    background: rgb(210, 210, 210);
    margin-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn {
    border: none;
    background: transparent;
    cursor: pointer;
}
.slash {
    padding: 0 1rem;
    font-size: 2.4rem;
}
.btn-languages {
    font-size: 2.4rem;
    font-family: 'Titillium Web', sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 3.6rem;
    color: rgb(31, 77, 79);
    transition: all 0.6s;
}
.btn-languages:hover {
    color: rgb(73, 168, 219);
    font-weight: 500;
}
.main {
    width: 100%;
    height: calc(100vh - 12rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}
.main-img {
    width: 18rem;
    margin: 4rem 0;
    position: relative;
}
.main-general-seting {
    font-size: 3.2rem;
    font-family: 'Titillium Web', sans-serif;
    font-style: italic;
    line-height: 4.4rem;
    color: rgb(31, 77, 79);
    border-radius: 2rem;
    background: linear-gradient(175deg, rgb(255, 255, 255) 6%, rgb(150, 150, 150));
    box-shadow: 0.8rem 0.8rem 0.2rem 0.1rem rgba(24, 24, 24, 0.2);
    transition: all 0.3s;
}
.btn-main {
    font-weight: 700;
    padding: 0.5rem 2rem;
}
.btn-main:hover {
    color: rgb(73, 168, 219);
}
.btn-main:active {
    box-shadow: none;
    color: rgba(250, 28, 28, 0.6);
}
.main-text {
    font-weight: 500;
    padding: 1rem 2rem;
    margin-top: 4rem;
}
.main-text-author {
    padding: 1rem 2rem;
    margin-top: 1rem;
    margin-right: 30rem;
    margin-bottom: 4rem;
    align-self: flex-end;
}
.footer {
    width: 100%;
    height: 6rem;
    background: linear-gradient(225deg, rgb(255, 255, 255) 6%, rgb(150, 150, 150));
    border-radius: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-data {
    width: 38rem;
    height: inherit;
    margin-left: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
}
.footer-text {
    font-size: 3.2rem;
    font-family: 'Titillium Web', sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 4.8rem;
    color: rgb(31, 77, 79);
}
.footer-link {
    text-decoration: none;
    color: rgb(31, 77, 79);
    cursor: pointer;
    transition: all 0.6s;
}
.footer-link:hover {
    color: rgb(64, 130, 165);
    font-weight: 500;
}
.rss {
    width: 12rem;
    height: 4rem;
    fill: rgb(31, 77, 79);
    transition: 0.6s;
    margin-right: 2rem;
}
.rss:hover {
    fill: rgb(64, 130, 165);
}
.active {
	animation: bounce-top 0.6s both;
}
.active-text {
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.active-title {
    animation: text-shadow-drop-bottom 0.6s both;
}

@keyframes bounce-top {
    0% {
      transform: translateY(-45px);
      animation-timing-function: ease-in;
      opacity: 1;
    }
    24% {
      opacity: 1;
    }
    40% {
      transform: translateY(-24px);
      animation-timing-function: ease-in;
    }
    65% {
      transform: translateY(-12px);
      animation-timing-function: ease-in;
    }
    82% {
      transform: translateY(-6px);
      animation-timing-function: ease-in;
    }
    93% {
      transform: translateY(-4px);
      animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
      transform: translateY(0px);
      animation-timing-function: ease-out;
    }
    100% {
      transform: translateY(0px);
      animation-timing-function: ease-out;
      opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
      transform: translateY(-1000px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}

@keyframes text-shadow-drop-bottom {
    0% {
      text-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
    }
    100% {
      text-shadow: 0 6px 18px rgba(255, 255, 255, 0.6);
    }
}

@media screen and (max-width: 1024px) {
.header {
    height: 5rem;
}
.main {
    height: calc(100vh - 10rem);
}
.footer {
    height: 5rem;
}
.wrapper {
    max-width: 1024px;
    width: 100%;
}
.main-text-author {
    margin-right: 0;
    align-self: center;
}
.footer-data {
    width: 34rem;
}
.footer-text {
    font-size: 2.8rem;
    line-height: 4.2rem;
}
.rss {
    width: 10rem;
    height: 4rem;
}
}
@media screen and (max-width: 768px) {
.wrapper {
    max-width: 768px;
    width: 100%;
}
.main-img {
    width: 16rem;
    margin: 1rem 0;
}
.main-text-author {
    margin-bottom: 2rem;
}
.footer-data {
    width: 34rem;
}
}
@media screen and (max-width: 425px) {
.header {
    height: 4rem;
}
.main {
    height: calc(100vh - 8rem);
}
.footer {
    height: 4rem;
}
.wrapper {
    max-width: 425px;
    width: 100%;
}
.footer-data {
    width: 22rem;
}
.footer-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
}
.rss {
    width: 6rem;
    height: 4rem;
}
.header-text {
    font-size: 2.4rem;
    line-height: 3.6rem;
}
.header-block {
    width: 8rem;
    height: 3rem;
}
.slash {
    font-size: 1.8rem;
}
.btn-languages {
    font-size: 1.8rem;
    line-height: 2.7rem;
}
.main-general-seting {
    font-size: 2.8rem;
    line-height: 4.2rem;
}
.btn-main {
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-weight: 600;
}
.main-img {
    width: 14rem;
    margin: 1rem 0;
}
}
@media screen and (max-width: 375px) {
.header {
    height: 4rem;
}
.main {
    height: calc(100vh - 8rem);
}
.footer {
    height: 4rem;
}
.wrapper {
    max-width: 375px;
    width: 100%;
}
.footer-data {
    width: 22rem;
    margin-left: 1rem;
}
.footer-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
}
.rss {
    width: 6rem;
    height: 4rem;
    margin-right: 1rem;
}
.main-general-seting {
    font-size: 2.4rem;
    line-height: 3.6rem;
}
.btn-main {
    font-weight: 400;
}
.main-img {
    width: 14rem;
    margin: 1rem 0;
}
}
@media screen and (max-width: 320px) {
.header {
    height: 3rem;
}
.main {
    height: calc(100vh - 6rem);
}
.footer {
    height: 3rem;
}
.wrapper {
    max-width: 320px;
    width: 100%;
}
.footer-data {
    width: 18rem;
    margin-left: 1rem;
}
.footer-text {
    font-size: 1.4rem;
    line-height: 2.1rem;
}
.rss {
    width: 5rem;
    height: 3.5rem;
    margin-right: 1rem;
}
.header-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
}
.header-block {
    width: 6rem;
    height: 2.5rem;
}
.slash {
    font-size: 1.4rem;
    padding: 0 0.5rem;
}
.btn-languages {
    font-size: 1.4rem;
    line-height: 2.1rem;
}
.main-general-seting {
    font-size: 2.2rem;
    line-height: 3.2rem;
}
}
