* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

Body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
}

#container {
    width: clamp(390px, 100%, 1440px );
    min-height: 700px;
    border: 4px solid red;
    margin: 4px auto;
    padding-bottom: 80px;
}

#topbar {
    height: 60px; background-color: grey;
    color: #EEE;
    text-align: center;
    font-size: 2em;
}

#navbar {
    height: 80px;
    background-color: aqua;
    text-align: center;
    font-size: 2em;
    color: #222;
    background-image: url(flwr.jpeg) ;
}

#hero {
   
    position: relative;
    aspect-ratio: 1000/400;
    overflow: hidden;
    border: 0px solid green;
  
    box-shadow: 0px 20px 0px rgb(181, 11, 42), 
                0px 40px 0px  rgb(2210, 75, 39),
                0px 60px 0px rgb(203, 155, 75), 
                0px 80px 0px rgb(36, 49, 103);
}

#hero video {
    position: absolute;
    top:50%; left: 0; width: 100%;
    transform: translateY(-50%);
    aspect-ratio: 1000/562;

}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    aspect-ratio: 1000/562;
    background-image: linear-gradient(90deg, hsla(0, 100%, 0%,.8), hsla(0, 100%, 0%, .1) )
}

p.overlay-text {
    border: 0px solid red;
    position: absolute; top: 180px; left: 40px;
    font-size: 4em ;
    text-transform: uppercase;
    color: white;
    width: 40%;
}


div.hero-cta{
    border: 0px solid red;
    position: absolute; bottom: 120px; right: 40px;
}

div.hero-cta a {
    border: 4px solid white;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 40px;
    color: white;
    padding: 15px;
    padding-top: 35px;
    padding-left: 10px;
    display: inline-block;
    width: 260px;
    text-align: right;
    background-image: url(../images/blue.png);
    background-size: 100% 0%;
    background-repeat: no-repeat;
    transition: background-size 122ms linear;


}

div.hero-cta a:hover {
    background-size: 100% 100%;


}


div.hero-cta a:last-child {
background-color: white;
color: #000


}

div.hero-cta a:last-child:hover{
    color:whitesmoke
}



