* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'montserrat', sans-serif;
  min-height: 100vh;
  background-image: linear-gradient(to bottom right, #191970, #4B0082);
}

.page-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  margin: 10px;
  display: block;
  max-width: 540px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease-out;
}

.card-inner {
  background-color: #FFF;
}

.card-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #6A0DAD;
  padding: 25px;
}

.logo {
  max-width: 150px;
  border-radius: 10;
  margin-bottom: 30px;
}

.card-header h1 {
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-header h2 {
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
}

.card-body {
  padding: 25px;
}

.card-body h2 {
  color: #222;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-body p {
  color: #555;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
}
.card-body p:last-of-type {
  margin-bottom: 0;
}

.card-footer {
  padding: 25px;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons .icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0px 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.icon.instagram {
  width: 32px;
  height: 32px;
  background-image: url('./images/instagram.png');
}
.icon.facebook {
  background-image: url('./images/facebook.png');
}
.icon.twitter {
  background-image: url('./images/twitter.png');
}
.icon.youtube {
  background-image: url('./images/youtube.png');
}