@import url('https://fonts.googleapis.com/css2?family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap');

*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(bgg.jpg);
    background-size: cover;
}
.navigation{
    font-family: "Wittgenstein", serif;
    font-weight: 700;
    justify-content: space-between;
}



nav{
    
}
ul{
    display: flex;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    list-style: none;
    justify-content: space-around;
    padding-top: 60px;

    
}
 ul li a{
    text-decoration: none;
    color: white;

 }
ul li a,
ul li:hover{
   
    text-shadow: 0 0 10px   skyblue,0 0 20px skyblue,0 0 30px skyblue,0 0  skyblue;
    transform: scale(1.7);
    transition: 0.5S;
}   
button{
    display: flex;

    position: relative;
    left: 20px;
    top: -20px;
    box-shadow: 0 0 10px blue,0 0 20px rebeccapurple, 0 0 30px red;
background: transparent;

    border-radius: 50px;
    padding: 5px;
  border-color: transparent;
    transition: 0.3s;
}
button:hover{
    box-shadow: 0 0 10px skyblue,0 0 20px skyblue, 0 0 30px skyblue;
border-color: white;
 transform: scale(1.2);
}
img{
    position: relative;
    top: 250px;
    width: 250px;
    height: 250px;
}
.text1{
    color: white;
    position: relative;
    left: 120px;
    top: 30px;
}
.text2{
    color: white;
    position: relative;
    left: 150px;
    top: 60px;
}
.text3{
    color: blue;
    text-shadow: 0 0 10px skyblue,0 0 20px blue,0 0 30px red;
    position: relative;
    width: 0ch;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 6s  infinite;
    border-color: transparent;
    background-color: transparent;
    left: 360px;
    top: 50px;
    font-size: 80px;
}
@keyframes typing{
    0%{
        width: 0ch;

    }
    50%{
        width: 18ch;
    }

}
.text4{
    position: relative;
    top: 80px;
    left: 80px;
}
