@font-face {
    font-family: 'Cal';
    src: url('cal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'marker';
    src: url('marker.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.25) rotate(3deg);
    }

    75% {
        transform: scale(1.25) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    font-family: Arial, sans-serif;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
    z-index: 2;
    background: rgb(255, 255, 255);
    height: 5.75rem;
}

.first-date-button,
.messages-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem;
    appearance: none;
}

.first-date-button a,
.messages-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.first-date-button i,
.messages-button i {
    font-size: 1.3rem;
    color: black;
    margin-bottom: 4px;
}

.first-date-button span,
.messages-button span {
    font-family: 'Cal';
    font-size: 0.9rem;
    color: black;
}

.post-button {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 8px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Cal';
    animation: pulse 3s ease-in-out infinite;
    text-decoration: none;
    appearance: none;
}

.post-button a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.post-button button {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Cal';
    cursor: pointer;
    appearance: none;
}