* {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #b9fad9;
}


.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.header .logo {
  width: 38%;
  margin: 8px;
}

.profilePic {
  width: 35%;
  border-radius: 50%;
  border:5px solid #729d87;
}

.title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 8px;
}

.copy {
  color: #5e5e5e;
}


.socials{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  
}

.socials .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
    width: 50px;
  height: 50px;
  padding: 5px;
  margin: 8px;
  border: 3px solid #5e5e5e;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
}

.socials .social-icon a {
  text-decoration: none;
}

.socials .fa-brands {
  color: #5e5e5e;
  padding: 4px;
  font-weight: bold;
  
}

.link{
  display: flex;
  justify-content: space-between;  
  flex-direction: row; 
  text-decoration: none;
  background-color: white;
  color:#5e5e5e;
  border-radius: 10px;
  margin:10px;
}
.linkpic {
  display: flex;
  flex-direction: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  padding-top:20px;
  padding-bottom:20px;
  width: 17%;
  background-color: #5e5e5e;
  color: white
}
.linktext {
  margin-right:auto;
  align-self:center;
  padding-left:10px;
  padding-right:10px;
  width:80%;
  
}