:root {
    --black: #000000;
    --white: #FFFFFF;
    --pink: #FF2F6F;
    --maroon:#3E000C;
    --grey: #E9DDE0;
}

@font-face {
    font-family: 'YourFontName';
    src: url('fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype'),
         url('/fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: normal; /* or bold if it's a bold font */
    font-style: normal;  /* or italic if it's an italic font */
  }
  

* {
    margin: 0;
    padding: 0;
}

html { 
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'YourFontName', sans-serif;
}

h1 {
    color: var(--black);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* card/white background */
.card {
    background-color: white;
    width: 630px;
    height: 550px;
    border-radius: 32px;
    padding: 32px;
    box-shadow:
    0 0 10px #fff,      /* inner white */
    20px 0 80px #FF2F6F,   /* inner left magenta short */
    20px 0 80px #030001,  /* inner right cyan short */
    20px 0 300px #FF2F6F,  /* inner left magenta broad */
    20px 0 300px #030001, /* inner right cyan broad */
    0 0 50px #fff,            /* outer white */
    10px 0 80px #FF2F6F,        /* outer left magenta */
    10px 0 80px #030001;
}

.questionContent {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

#exit {
    align-self: end;
}

.questionContent-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 50px;
}

.questionContent-container h1 {
    max-width: 50%;
}

.questionContent-question-container {
    display: flex;
    width: 50%;
    justify-content: space-between;
}

.close {
    align-self: flex-end;
}

.row {
    display: flex;
    justify-content: center;
}

svg {
    cursor: pointer;
}

.answer {
    border-radius: 16px;
    color: var(--white);
    font-size: 18px;
    text-align: center;
    line-height: normal;
    font-style: normal;
    font-weight: 700;
    display: flex;
    padding: 19px 0px;
    width: 150px;
    justify-content: center;
    align-content: center;
    flex-shrink: 0;
    outline: none;
    cursor: pointer;
    border: none;
}

.yes {
    background-color: var(--pink);
}

.yes:hover {
    background: linear-gradient(180deg, #A71E4F 0%, #D52766 100%);
    box-shadow: 0px -4.892px 4.892px 0px #A01D4C inset, 0px 4.892px 4.892px 0px #DC2869 inset, 0px 9.07px 42.13px 0px rgba(198, 0, 71, 0.40);
}

.no:hover {
    background-color: #2B0008;
}

.yesContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.yesContent-heart {
    width: 30%;
}

.no {
    background-color: var(--maroon);
}

.disappear {
    /*visibility: hidden;*/
    display: none !important;
}

/* "No" styling */ 
.noContent {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
}

.noContent-back-button {
    cursor: pointer;
}

.noContent-container {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    justify-content: space-between;
    height: 100%;
}

.noContent h1 {
    justify-content: start;
    align-self: start;
}

.noContent-description-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.noContent-description-item {
    display: flex;
    gap: 8px;
    border: 0;
}

/* No Section 3 */
.noContent-button-container {
    display: flex;
    width: 100%;
    gap: 6px;
    justify-content: space-between;
}

.noContent-button-item {
    height: 90px;
    padding: 30px;
    outline: none;
    border: none;
    border-radius: 8px;
    width: 100%;
}
.noContent-button-item:focus {
    outline: none;
    box-shadow: none;
}

.button-1 {
    background-color: var(--black);
}

.button-1 span:nth-child(1) {
    color: var(--white);
    font-weight: 700;
}
.button-1 span:nth-child(3) {
    opacity: 75%;
    color: var(--grey);
}

.button-2 {
    background-color: var(--grey);
}

.button-2 span:nth-child(1) {
    color: var(--black);
    font-weight: 700;
}
.button-2 span:nth-child(3) {
    color: var(--black);
    opacity: .75;
}

/* No Section 4 */
.noContent-four-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noContent-four-button {
    background-color: var(--pink);
    cursor: pointer;
    border-radius: 16px;
    height: 60px;
    border-radius: 16px;
    color: var(--white);
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    display: flex;
    padding: 19px 0px;
    width: 100%;
    justify-content: center;
    align-content: center;
    flex-shrink: 0;
    outline: none;
    cursor: pointer;
    border: none;
}



.noContent-four-button:hover {
    background: linear-gradient(180deg, #A71E4F 0%, #D52766 100%);
    box-shadow: 0px -4.892px 4.892px 0px #A01D4C inset, 0px 4.892px 4.892px 0px #DC2869 inset, 0px 9.07px 42.13px 0px rgba(198, 0, 71, 0.40);
}

