@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

*
{
  font-family: "Fjalla One", sans-serif;
  padding: 0;
  margin: 0;

}

header a
{
    color: white;
    text-decoration: none;
}

body
{
    background-image: linear-gradient(to right, #0a0a2a , #000000);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container
{
    background-image: 
    
    linear-gradient(to right , #0a0a2a9f 30% , #0000009d ),
    url(background.jpg) 
    
    ;
    background-position: right;
    background-color: red;
    background-repeat: no-repeat;
    background-size: cover;
    width: 90%;
    height: 640px;
}

.container:hover
{
    background-image: 
    
    linear-gradient(to right , #0a0a2a9f 30% , transparent),
    url(background.jpg) 
    
    ;
}


header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo
{
    font-size: 30px;
    text-transform: uppercase;
}

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: 16px;
    padding : 30px;
}


.content h2
{
    font-size : 100px;
    text-transform: uppercase;
}

.content p
{
    letter-spacing: 2px;
    width : 350px;
    padding: 20px 0px;
}

.content button
{
    font-size: 30px;
     padding: 6px 10px;
     border-radius: 10px;
     border: 2px solid transparent;

}

.content button:hover
{
    background-color: transparent;
    border-color: white;
    cursor:pointer;
    color: white;
    
}

.content button a 
{
    background-color: transparent;
    text-decoration: none;
    color: #000000;
}

.content button a:hover 
{
    background-color: transparent;
    text-decoration: none;
    color: white;
}