body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
  }
body {
    background-color: rgb(211, 114, 208);
}
.container {
    text-align: center;
}
#image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.myButton {
    background-color: blueviolet;
    color: white;
    display: flex;
    justify-content: centre;
    align-items: center;
    border-radius: 100px;
    box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
.myButton:hover {
    background-color: brown;
    transition: 0.2s;
}
