*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: blueviolet;

}
.container {
    text-align: center;
}

.img svg {
    width: 300px;
}
.container h4{
    font-size: 30px;
    color: white;
    margin: 20px 0;
    margin-bottom: 30px;
    text-shadow:2px 2px #000000;
}
.container a{
    text-decoration: none;
    border-radius: 40px;
    padding: 10px;
    background-color: white;
    font-weight: bold;
    color: blueviolet;
}
