*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;  
}

header {
    background-color: #131a22;
    color: #ffffff;
    padding: 0.5rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#logo{
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul{
    list-style: none;
    display: flex;
}

nav ul li{
    margin-right: 1rem; 
}

nav ul li a{
    text-decoration: none;
    color: rgb(186, 177, 177);
    padding: 0.5rem;
    font-size: 20px;
}

#search{
    display: flex;
    align-items: center;
}

#search input{
    padding: 0.5rem;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: transparent;
    border: none;
    color: rgb(152, 143, 143);
}


#search button {
    background-color: transparent;
    color: #a29898;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

#search a{
    color: white;
    font-size: 1.5rem;
    margin-right: 10px;
}

nav ul li ul{
    position: absolute;
    display: block;
    background-color: #131a22;
}

nav ul li ul li a{
    display: none;
    color: grey;
}

nav ul li:hover > ul li a{
    display: block;
    background-color:#131a22;
}

nav ul li ul li a:hover{
    background-color: whitesmoke;
    color: #131a22;
}

.profile{
    position: absolute;
    right: 50px;
    top: 10px;
}

.profile ul {
    list-style: none;
}

.profile ul li a{
    color: rgb(157, 152, 152);
    font-size: 1.5rem;

}

.profile ul li ul li a{
    display: none;
}

.profile ul li:hover > ul li a{
    display: block;
    background-color: #131a22;
    font-size: 20px;
}

.profile ul li ul li a:hover{
    background-color: whitesmoke;
    color: #131a22;
}

.banner{
    display: flex;
    color: white;
    background: url(amazon-prime-video-logo.webp) no-repeat;
    background-size: cover;
    flex-direction: column;
    font-size: 1.5rem;
}

.banner1 h1{
    margin-top: 10%;
    margin-left: 8%;
    margin-bottom: 20px;
    font-weight: 400;
}

.banner1 p{
    font-size: 1.3rem;
    margin-left: 8%;
}

.banner1 a{
    text-decoration: none;
}

.banner1 button{
    all: unset;
    padding: 1%;
    background-color: rgb(18, 105, 193);
    color: whitesmoke;
    font-size: 20px;
    border-radius: 5px;
    margin: 18px 8%;
    cursor: pointer;
}

.banner2 a{
    text-decoration: none;
}

.banner2{
    margin-top: 30%;
    margin-left: 8%;
    margin-bottom: 8%;
    color: white;
}

.banner2 h1, p{
    font-weight: 400;
    margin-bottom: 20px;
}

.banner2 p{
    font-size: 1.3rem;
}

.banner2 button{
    all: unset;
    padding: 10px;
    background-color: rgb(18, 105, 193);
    color: whitesmoke;
    font-size: 20px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    width: 10%;
    text-align: center;
}

.content{
    display: grid;
    grid-template-columns: 2fr 2fr;
}

.text-content{
    margin: 10%;
    font-size: 1.6rem;
}

.text-content h1{
    margin-bottom: 20px;
}

.text-content p{
    font-size: 1.3rem;
    color: black;
}

.box-content{
    display: grid;
    grid-template-columns: 200px 200px 1fr;
    margin-top: 20px;
    row-gap: 2px;
}

.box{
    width: 190px;
    height: 150px;
    gap: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 5px;
    background: linear-gradient(to right, rgb(85, 162, 180), rgb(12, 61, 121));
    border-color: rgb(33, 133, 192);
    font-size: 1.2rem;
    padding: 10px;
}

.box:hover{
    box-shadow: 2px 2px 10px black;
}

footer{
    background-color: #131a22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

footer h4,p{
    margin-top: 25px;
    color: rgb(137, 128, 128);
}

footer h4{
    margin-bottom: 20px;
}

footer a{
    text-decoration: none;
    color: #39b0d1;
    margin-right: 15px;
    cursor: pointer;
}

footer img{
    height: 30px;
    margin: 15px 20px;
    background: transparent;
}

.box img{
    height: 38px;
    color: white;
}
