@import url("https://fonts.googleapis.com/css?family=Nunito|Marck+Script|Dancing+Script:wght@700&display=swap");
:root {
  --main-bg-color: 245, 237, 221;
  --red-text-color: 196, 24, 12;
  --blue-text-color: 30, 88, 176;
  --black-text-color: 0, 0, 0;
  --main-text-color: var(--red-text-color);
}

body {
  background: rgb(var(--main-bg-color));
  font-family: "nunito", sans-serif;
}

.shell {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.mb {
  margin-bottom: 1.5rem;
}

h1 {
  margin: 0;
  font-family: 'Marck Script', cursive;
  position: relative;
  letter-spacing: 0;
  font-weight: 400;
}

h1 img {
    height: 75px;
    width: auto;
    display: inline-block;
    z-index: -1;
}

h1 .logo {
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: center;
}

h1 .shaken {
  flex: 0 0 auto;
  position: relative;
}

h1 .shaken .s {
  font-size: 2.5em;
}

h1 .shaken .haken {
  font-size: 2em;
  top: -8px;
  left: -4px;
  letter-spacing: -3px;
    position: relative;
  }

h1 .sophia {
  font-size: 0.7em;
  bottom: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.shell:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--main-bg-color),.55);
  pointer-events: none;
  z-index: 2;
}

.shell video {
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.frame {
  z-index: 3;
  position: absolute;
  background-color: rgba(var(--main-bg-color), 0.90);
  top: 50%;
  left: 50%;
  width: 400px;
  height: auto;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  max-width: 90%;
  box-shadow: 0.5rem 1rem 1rem rgba(0, 0, 0, 0.6);
  padding: 1rem 0.5rem;
  color: rgb(var(--main-text-color));
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}

.frame, .card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}


@-webkit-keyframes background {
  0%, 100% {
    background-position: 0% 13%;
  }
  50% {
    background-position: 100% 88%;
  }
}

@keyframes background {
  0%, 100% {
    background-position: 0% 13%;
  }
  50% {
    background-position: 100% 88%;
  }
}
p {  
  padding: 0;
  margin: 0;
  font-family: Nunito;
  color: rgba(var(--black-text-color), 0.7);
}

a {
  color: rgb(var(--main-text-color));
}

h2 {  
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 0;
}
h3 {
  margin: 0.5rem;  
  color: rgba(var(--black-text-color), 0.7);
}

span.fa-cocktail {
  position: absolute;
  bottom: 0;
  left: 5px;
  font-size: 2rem;
  transform: rotate(45deg);
}

.line {
  width: 2rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
}

.line-1 {
  top: 85%;
}

.line-2 {
  top: 13%;
}

.line-1, .line-2 {
  left: 82.5%;
  transform: rotate(-90deg);
  background: #C4180C;
  width: 3rem;
}

.line-3 {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social {
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
}
.social span.fa, .social span.fab {
  padding: 0 0.5rem;
}
.social span.fa:hover, .social span.fab:hover {
  opacity: 0.5;
  cursor: pointer;
}