*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.container{
    width: 30%;
    height: 300px;
    border: 2px solid #000;
    border-radius: 50px;
   display: flex;
   justify-content: space-around;
   flex-direction: column;
   padding: 60px;
   margin-top: 100px;
}

footer{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000;
    color: #fff;
}

footer a{
    color: #fff;
}