*, *::before, *::after {box-sizing: border-box;}
html, body {
	width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  background: #FFF;
}


body {
  color: #333;
	box-sizing: border-box;
  font-family: sans-serif;
  background: #FFF no-repeat center center fixed;
  background-image: url("./images/bg.jpg");
  background-size: cover;
  transition: background-image 0.1s ease-in-out;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-ctnr {
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.logo {
  width: 400px;
  position: relative;

  background: #00a7e6;
  padding: 20px;
  padding-bottom: 0;
}

.logo::after {
  content: "";
  background-position: top right;
  background-repeat: no-repeat;

  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('images/title_bg.png');
  background-size: 100% 100%;
}

.succubus-logo img,
.logo img {
  max-width: 100%;
  /* transform: translateX(-4%); */
}

.succubus-logo {

  line-height: 0;
  position: relative;
  margin: 0;
}
.succubus-logo::after {
  content: "";
  background-position: top right;
  background-repeat: no-repeat;

  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('images/white-bottom.png');
  background-size: 100% 100%;
}

body .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 20px;

  margin-bottom: 100px;
}



.blue {
/* border: 1px solid red; */
background: #00A7E6;
color: #FFF;
padding: 30px;
border-radius: 30px;
max-width: 800px;
font-size: 20px;
margin: 0 auto;
}
.blue a { color: #FFF; }



footer {
  display: flex;
  justify-content: flex-end;
}
footer > div{
  background: #FFF;

}