@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,#000);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    background-image:
    linear-gradient(to right, #01022de5 30%,#0000007a),
    url(../images/avatar.jpg)
    
    ;
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-position: center;
    
    padding: 10px;
    width: 100%;
    height: 100%;
}

.container:hover{
    background-image:
    linear-gradient(to right, #01022de5 30%,transparent),
    url(../images/avatar.jpg)
<<<<<<< HEAD
=======
    
>>>>>>> 59ca34206988100789599a590fb34d534046c26b
    ;
}

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

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

ul{
    width: 80%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}

ul a{
    border-bottom: 2px solid transparent;
    text-transform: capitalize;
}

ul a:hover{
    border-bottom-color: white;
}

.content{
    color: white;
    width: 50%;
    margin-top: 50px;
    padding: 30px;
}

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

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

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

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

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .logo{
        flex-direction: column;
        flex-wrap: wrap;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
/* @media only screen and (min-width: 600px) {...}

Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up) 
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) 
@media only screen and (min-width: 1200px) {...} */