@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@1&display=swap');

body {
    color: black;
    background-image: linear-gradient(#6d59c0, rgb(16, 126, 54));
    background-attachment: fixed;
    font-family: 'Libre Baskerville', serif;
}

p {
    color: white;
}


ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    align-items: center;
    padding: 16px;
}

a {
    color: greenyellow;
    text-decoration: none;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid greenyellow;
}

.center {
    text-align: center;
}

h1 {
    color: greenyellow;
    text-align: center;
    line-height: 100px;
}

h2{
    color: black;
    text-align: center;
    line-height: 100px;
}


.nav {
    color: greenyellow;
    transition: 0.2px;
}

nav a:hover {
    color: whitesmoke;
}

button {
    background-color: slategrey;
    border: none;
    width: 100px;
    height: 30px;
}

footer img {
    width: 25px;
    height: 25px;
}

footer {
    display: flex;
    justify-content: center;
}

footer a {
    margin: 20px;
    text-align: center;
}

footer p {
    margin-top: 2px;
}

.container {
    padding: 0px 50px;
}

input {
    width: 100%;
    padding: 8px 0px;
    margin: 8px 0px;
}

input[type=text]{
    height: 100px;
}
