@font-face {
  font-family: "Averta";
  font-weight: normal;
  src: url("./fonts/Averta-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Averta";
  font-weight: 700;
  src: url("./fonts/Averta-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "DMSerif";
  src: url("./fonts/DM_Serif.woff2") format("woff2");
}

body {
    background-color: #7b282b;
    font-family: "Averta";
    color: #fff;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body h1, body p {
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

header a {
    display: block;
    width: 132px;
}

header a svg {
    width: 100%;
}

header a.btn {
    width: fit-content;
    background-color: #FF5C6E;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content .btn {
    display: block;
    background: #FF5C6E;
    font-weight: 700;
    padding: 8px 16px;
    border: none;
    border-radius: 64px;
    cursor: pointer;
}

.content #welcome, .content #goodbye {
    padding: 20px;
}

.content #welcome img {
    display: block;
    width: 232px;
    margin: 0 auto 32px;
}

.content #welcome .presentation {
    position: relative;
    background-color: #cb4d51;
    text-align: center;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.content #welcome .presentation .decoration {
    position: absolute;
    font-size: 44px;
    width: fit-content;
}

.content #welcome .presentation .fire {
    top: 0;
    left: 32px;
    transform: translateY(-50%);
}

.content #welcome .presentation .coquin {
    font-size: 36px;
    top: 25%;
    right: 0;
    transform: translateX(40%) rotate(12deg);
}

.content #welcome .presentation .eyes {
    bottom: -3px;
    left: -10px;
    transform: rotate(-12deg);
}

.content #welcome .presentation .heart {
    font-size: 28px;
    bottom: -12px;
    left: 52%;
}

.content .questionSection {
    text-align: center;
    padding: 8px 8px 24px;
}

.content .questionSection img {
    display: block;
    width: 152px;
    height: auto;
    margin: 0 auto 20px;
}

.content .questionSection .neverHaveI {
    display: none;
    color: #ffc8bd;
    font-size: 16px;
    margin-bottom: 8px;
}

.content .questionSection .question {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.content .buttons {
    position: relative;
    flex: 1;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.content .buttons button {
    flex: 1;
    background-color: unset;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Averta";
    font-size: 32px;
    font-weight: 700;
    padding: 0;
    border: none;
    cursor: pointer;
}

.content .buttons .or {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eb5c5f;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: solid 1.5px #fff;
    border-radius: 64px;
    transform: translate(-50%, -50%);
}

.content .buttons #already {
    background-color: #eb5c5f;
    color: #fff;
}

.content .buttons #never {
    background-color: #ffc8bd;
    color: #7b282b;
}

.nextContent {
    display: none;
}
