body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    height: 100%;
}

.img_logo {
    width: 15%;
    height: 100px;
    position: relative;
    right: 400px;
}

.btn_stream {
    background-color: #e50914;
    color: white;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn_stream:hover {
    background-color: darkred;
}

.nav_bar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.main_titles_container {
    color: white;
    text-align: center;
    width: 50%;
}

.main_title, .main_subtitle, .main_text {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: white;
}

.main_title {
    font-size: 3.2em;
    margin: 20px auto;
}

.main_subtitle {
    font-size: 1.5em;
    margin: 10px auto;
}

.main_text {
    font-size: 1.2em;
    margin: 20px auto;
    width: 70%;
}

.root {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.mail_email_container_input {
    outline: none;
    border: none;
    font-size: 12pt;
    height: 48px;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.441);
    color: white;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto;
}

#btn {
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #e50914;
    color: white;
    font-size: 1.4em;
    text-align: center;
    height: 53px;
    width: 150px;
    border-radius: 10px;
    border-color: #e50914;
}

#btn:hover {
    background-color: darkred;
    border-color: darkred;
}

.ranked_movies {
    color: white;
    font-size: 36pt;
    text-align: center;
    margin-top: 50px;
}
.box{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 20px auto;
    background-image: url('AICT Project/back.jpg');
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat; 
}
    .content {
        width: 200px;
        height: 300px;
        text-align: center;
        border-radius: 20px;
        cursor: pointer;
        padding-top: 10px;
        background-image: url('AICT Project/back.jpg'); 
        background-size: cover; 
        background-position: center center; 
        color: white;
        transition: background-color 0.3s ease;
    }

.content:hover {
    background-color: black;
}

img {
    width: 220px;
    height: 280px;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

p {
    text-align: center;
    color: rgb(232, 231, 234);
    padding-top: 8px;
}

button {
    text-align: center;
    font-size: 24px;
    color: white;
    width: 100%;
    padding: 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgb(160, 11, 11);
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    color: white;
    background-color: black;
}

.movie_name {
    color: white;
}
.content {
    margin-right: 20px;
}
.content:last-child {
    margin-right: 0;
}
