body {
    background-color: #FFC7E4;
    font-family: "Funnel Sans", sans-serif;
}

.opening-screen {
    position: fixed;
    left: 50%;
    top: 5%;
    transform: translate(-50%, 0);
    transition: 0.4s ease;
}

.opening-modal {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #fedcee;
    box-shadow: 0 0 20px -10px grey;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.opening-modal h1 {
    color: black;
    font-family: "Barrio", system-ui;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

.opening-modal h3 {
    color: black;
}

.opening-modal-image {
    width: 100%;
    margin: 0 auto;
}

.love-button {
    background-color: #ff78be;
    color: white;
    border: 2px solid #fc68b4;
    padding: 15px 25px;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
    font-weight: 700;
}

.love-button:hover, .love-button:active, .love-button:focus {
    border-radius: 15px;
    transform: translate(0, 2px);
    box-shadow: 0 0 10px -5px #fc68b4;
}
