@font-face {
    font-family: 'Rascal';
    src: url('RASCAL__.TTF') format('truetype');
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content-container {
    text-align: center;
}

.heading-text {
    margin-bottom: 60px; 
    font-size: 32px; 
    font-weight: bold;
    color: darkolivegreen; 
    font-family: 'Rascal', sans-serif;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    margin: 0 50px;
}

.pea-bottom {
    width: 200px;
    height: auto;
    animation: swing 3s ease-in-out infinite alternate;
}

@keyframes swing {
    0% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}