*{
    margin: 0;
    padding: 0;
}
.header{
    min-height: 280vh;
    width: 100%;
    background-color: rgb(65, 65, 65);
    background-position: center;
    background-size: cover;
    position: relative;
}
.title{
    color:white;
    border: 4px solid aqua;
    font-size: 30px;
    position: absolute;
    top: 5%;
    left: 50%;
    width: 1000px;
    transform: translate(-50%,-50%);
    text-align: center;
}
.movie-about{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    text-align: center;
    width: 650px;
    border: 4px solid black;
}
.movie-about h2{
    color: red;
}
.middle{
    min-height: 100vh;
    width: 100%;
    background-color: rgb(65, 65, 65);
    background-position: center;
    background-size: cover;
    position: relative;
}
.movie-title{
    color:white;
    border: 4px solid aqua;
    font-size: 40px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.movie-second-title{
    color:rgb(255, 89, 0);
    border: 4px solid aqua;
    font-size: 33px;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.movie-first-button-link button{
    font-size: 20px;
    width: 150px; 
    height: 50px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    background-color:rgb(255, 111, 0);
}
.movie-second-button-link button{
    font-size: 20px;
    width: 150px; 
    height: 50px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    background-color:rgb(255, 111, 0);
}
.movie-third-button-link button{
    font-size: 19px;
    width: 150px; 
    height: 50px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    background-color:rgb(255, 111, 0);
}
.movie-first-button-link button:hover{
    border-radius: 10px 10px 10px 10px;
    border: 2px solid black;
}
.movie-second-button-link button:hover{
    border-radius: 10px 10px 10px 10px;
    border: 2px solid black;
}
.movie-third-button-link button:hover{
    border-radius: 10px 10px 10px 10px;
    border: 2px solid black;
}
.thank{
    border: 2px solid black;
    position: absolute;
    top: 85%;
    color: rgb(11, 243, 142);
    text-align: center;
}
@media(max-width: 700px){
    .header{
        min-height: 200vh;
    }
    .title{
        font-size: 15px;
        width: 320px;
    }
    .movie-about{
        top: 55%;
        font-size: 20px;
        width: 350px;
    }
    .movie-about img{
        width: 320px;
        height: 200px;
    }
    .movie-title{
        top:10%;
        font-size: 21px;
        width: 300px;
    }
    .movie-second-title{
        top: 23%;
        font-size: 20px;
        width: 250px;
    }
    .movie-first-button-link button{
            top: 35%;
    }
    .movie-second-button-link button{
        top: 50%;
    }
    .movie-third-button-link button{
        top: 65%;
    }
    .thank{
        top: 78%;
        font-size: 13px;
    }
}