.bg {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-size: cover;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
  .bg {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

.row { 
  position: relative;
  width: 500px; 
  margin: 50px auto; 
  padding: 20px; 
  background: white; 
  -moz-box-shadow: 0 0 20px black; 
  -webkit-box-shadow: 0 0 20px black; 
  box-shadow: 0 0 20px black; 
  text-align: center;

}

.header{
  text-align: center;  
}

.profile{
  display:block;
  box-sizing: border-box;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  box-shadow: 0 0 10px black; 
}

h1 {
  font-size: 28px;
  font-weight: bold;
}

a .button {
  margin: 0 auto;
}

.footer {
  margin-top: 64px;
  text-decoration: none;
  text-align: right;
  font-size: x-small;
  color: #666;
}
.footer a{
  color: #666;
}

ul.share-buttons li{
  display: inline;
}
ul.share-buttons{
  padding:10px;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.dnd {
  opacity: 0.5;
  border: 2px black solid;
}

#download {
  display: inline-block;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  color: white;
  background-color: #0069b4;
  box-shadow: 0 0 3px #0069b4; 
}