@font-face {
    font-family: 'MTO';
    src: url('MTO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    font-family: 'MTO', Arial, sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0e17;
}

h1 {
    font-size: 5rem;
    font-weight: bold;
    color: #0080ff;
    margin-bottom: 2rem;
}

.flip-clock {
    display: flex;
    gap: 1rem;
}

.flip-card {
    width: 64px;
    height: 96px;
    /* background-color: #f5d62a; */
    color: #1c7a24;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* border: 2px solid #f5d62a; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: bold;
}

.flip-card::before,
.flip-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ffd700;
}

.flip-card::before {
    top: 0;
}

.flip-card::after {
    bottom: 0;
}

.separator {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1c7a24;
    display: flex;
    align-items: center;
}

.heart {
    display: inline-block;
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

@keyframes heartbeat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1.3);
    }
  }
  