html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    background: rgb(1,21,255);
    background: linear-gradient(90deg, rgba(1,21,255,1) 20%, rgba(255,0,0,1) 78%);
    font-family: 'Raleway', sans-serif;
}

.site-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    color: gold;
}

.logo a {
    font-family: 'Tektur', cursive;
    font-size: 20px;
    text-decoration: none;
    color: gold;
}

.logo a:hover {
    color: rgba(255, 217, 0, 0.547);
}

.site-header-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.site-header-nav ul a {
    text-decoration: none;
    color: black;
}

.site-header-nav ul a:hover {
    color: gold;
}

.site-header-nav li {
    list-style: none;
    margin-right: 8px;
}

.follow-link {
    background-color: gold;
    padding: 12px 7px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    transition: background-color 0.5s ease-in-out;
}

.follow-link:hover {
    background-color: goldenrod;
    color: black;
}
/* main-bo'limi: Tarjima Kinolar */


.movies-h2 {
    color: white;
    font-size: 35px;
    margin: 50px 0 50px 395px;
}

.movies-parent {
    display: flex;
    margin-left: 30px;
}

.movies-people {
    margin-right: 20px;
    margin-bottom: 50px;
}

.movies-people img {
    border: 3px solid red;
    border-radius: 10px;
    transition: all 0.7s ease;
}

.movies-people img:hover {
    border: 3px solid #fff;
    opacity: 80%;
}

.movie-people-link {
    text-decoration: none;
    color: yellow;
    transition: color 0.5s ease-in-out;
}

.movie-people-link:hover {
    text-decoration: none;
    color: #fff;
}

/* main-bo'limi:Multfilmlar*/

.movies2-h2 {
    color: white;
    font-size: 35px;
    margin-left: 460px;
}

.cartoon-parent {
    display: flex;
    margin-left: 30px;
}

.cartoon-people img {
    margin-right: 20px;
    border: 3px solid red;
    border-radius: 10px;
    transition: all 0.7s ease;
}

.cartoon-people img:hover {
    border: 3px solid #fff;
}

.cartoon-people a {
    color: yellow;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.cartoon-people a:hover {
    color: #fff;
    opacity: 80%;
}

/* footer */

.site-footer-top {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.site-footer-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.site-footer-nav a{
    text-decoration: none;
    color: black;
    margin-right: 15px;
    transition: all 0.5s ease-in-out;
}

.site-footer-nav a:hover{
    color: gold;
}

.yordamchi-hr {
    width: 1100px;
    height: 5px;
    border: 0;
    border-radius: 10px;
    background: rgb(255,1,1);
    background: linear-gradient(90deg, rgba(255,1,1,1) 14%, rgba(255,246,0,1) 75%);
}

.site-footer-nav2 {
    display: flex;
    margin: 0;
    padding: 0;
}

.site-footer-nav2 li {
    list-style: none;
}

.site-footer-nav2 a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.site-footer-nav2 a:hover {
    text-decoration: none;
    color: yellow;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}
