@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 background:linear-gradient(to left, #c1e1d2, #b6ea7b);
    font-family:"Raleway",sans-serif;
    height:150PX;
}

.container {
  width: 500px;
  height: calc(100vh - 20px);
  margin: 50px auto;
  color: #264E26;
}

.container header {
  width: 100%;
  text-align: center;
}

.container header .profile {
  width: 300px;
  height: 104px;

  
}

.container header h2 {
  font-size: 1.2em;
}

.content {
  padding: 30px 30px 20px;
}

.content a {
  margin: 15px auto;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #264E26;
  border-radius: 50px;
  text-decoration: none;
  color: #264E26;
  cursor: pointer;
}

.content a:hover {
  background: #264E26;
  color: #FFF;
}