 @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
 *{
     font-family: "Ubuntu", sans-serif;
     padding: 0;
     margin: 0;
 }
 a{
    color: white;
    text-decoration: none;
 }
 body{
    background-image: linear-gradient( to right, #01022d,black);
    min-height: 100vh;
    display: flex;
    margin: 0;
 }
 .container{
    background-image: 
    linear-gradient(to right , #01022de5 30%, #00000088),
    url(ca-times.brightspotcdn.webp)

    ; 
    background-position: center;
    width: 100%;
    height: 640px;
    margin: auto; 
    background-size: cover;
 }
 
.container:hover{
    background-image: 
    linear-gradient(to right , #01022de5 30%, transparent),
    url(ca-times.brightspotcdn.webp)

    ; 
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;             /* makes sure it stays in flow */
    z-index: 10;
}
.logo{
    font-size: 30px;
    text-transform: uppercase;
}
.logo img {
  width: 40px;   /* adjust as needed */
  height: auto;  /* keep proportions */
}
ul{
    width: 60%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}
ul a{
    border-bottom: 2px solid transparent;
}
ul a:hover{
    border-bottom-color:white ;
}
.content{
    color: white;
    width: 50%;
    margin-top: 30px;
    padding: 30px;
}
.content h2{
    font-size: 100px;
    text-transform: uppercase;
}
.content p{
    letter-spacing: 3px;
    width: 400px;
    padding: 20px 0;
}
.content button{
    font-size: 30px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}
.content button:hover{
    background-color: transparent;
    border-color: white;
    color:white;
}

 
 