body{
    margin:0;
}
h1 {
    color: #000;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    text-decoration: rgb(76, 110, 76) underline dotted;
    letter-spacing: 5px;
}

body {
    background-color: #FFF;
    color: #000;
}

button {
    color: black;
    background-color: #FFF;
    border: 2px solid #045730;
}

a {
    text-decoration: none;
    color: black;
}

p {
    line-height: 2;
}

form {
    text-align: center;
}

nav {
    text-align: center;
    color: black;
}
#about{
    text-align: center;
}
button{
    color: black;
    background-color: white;
    padding: 10px 20px;
    font-size: small;
    border: 1px solid grey;
    border-radius: 8px;
}
button:hover{
    color: white;
    background-color: black;
    cursor: pointer;
}
a:visited{
    color: black;
}
#search{
    padding: 10px 20px;
    font-size: small;
    border-width: 1px;
    border-radius: 8px;
}
hr{
    width: 70%;
}
div.container{
    border: 1px solid black;
    width: 350px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
}
img.profile{
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
div.title{
    font-size: small;
    margin-bottom: 20px;
}
p.my_name{
    font-size: x-large;
    text-decoration: black underline wavy;
    font-weight: bold;
    margin-bottom: 0px;
}
div.title p{
    margin-top: 0px;
    margin-bottom: 0px;
}
section.contact{
    width: 300px;
    margin: auto;
    text-align: center;
    border: 2px black solid;
    border-radius: 1%;
    margin-bottom: 20px;
}
.home{
    transition: 0.5s;
}
.home:hover{
    transform: scale(1.2);
}