html, body {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    background: #fdfdfd;
    overflow: hidden;
    perspective: 1000px;
    font-family: 'Comfortaa', cursive;
}
.dot {
    width: 35px;
    height: 35px;
    position: absolute;
    background: url('img/petal.png');
    background-size: 100% 100%;
}
#petals {
    width: 100%;
    height: 100%;
}
.card {
    width: 100%;
    max-width: 800px;
    min-height: 420px;
    padding: 15px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 200px;
    opacity: 0;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    transform: translate3d(-40%, -50%, 0) rotateY(15deg);
    animation: card 2s linear 2s forwards;
}

.title {
    margin-bottom: 10px;
    background-image: linear-gradient(110deg, #ff6945 0%, #8047ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff6945;
    font-size: 80px;
    line-height: 1;
    text-align: center;
}

@media (max-width: 680px) {
    .title {
        font-size: 42px;
    }
    .card {
        width: 70%;
    }
    #text {
        font-size: 18px !important;
    }
}

.text {
    margin-bottom: 20px;
    padding-bottom: 5px;
    color: #333;
    font-size: 35px;
    line-height: 1.2;
}
.author {
    background-image: linear-gradient(110deg, #ff6945 0%, #8047ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    color: #121212;
    font-size: 40px;
    text-align: right;
    padding-right: 40px;
    transition: opacity 1s linear;
}

@keyframes card {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

