body {
    background-image: url(https://images.pexels.com/photos/3408744/pexels-photo-3408744.jpeg);
    max-height: 100%;
    width: 100%;

}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(123, 196, 245, 0.771);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: auto;
    height: auto;
}

nav h1{
    margin-left: 10px;
    color: blueviolet;

}
nav div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 30px;
}
nav img{
    max-width: 50px;
    max-height: 50px;
    border-radius: 50px;
    border-color: blueviolet;

}

nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin-right: 30px;
}

nav ul li{
    margin: 0 10px;
}
a {
    text-decoration: none;
    color: blueviolet;
}

.welcome{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: rgb(123, 196, 245);;
    


}
.text{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    width: 500px;
    max-width: max-content;
    padding: 10px;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    background-color: rgba(123, 196, 245, 0.697);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

button {
    display: flex;
    background-color: rgba(123, 196, 245, 0.695);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 10px;

}
footer{
    display: flex;
    align-content: end;
    justify-content: space-around;
    color: rgba(0, 255, 255, 0);
}
