* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f7a072;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    --mask:
        radial-gradient(38.99px at 50% calc(100% + 18px),#0000 calc(99% - 8px),#000 calc(101% - 8px) 99%,#0000 101%) calc(50% - 60px) calc(50% - 19px + .5px)/120px 38px ,
        radial-gradient(38.99px at 50% -18px,#0000 calc(99% - 8px),#000 calc(101% - 8px) 99%,#0000 101%) 50% calc(50% + 19px)/120px 38px ;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    -webkit-mask-repeat: repeat;
    mask-repeat: repeat;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    margin-bottom: 30px;
}

.main-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.main-title a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.main-title a:hover {
    opacity: 0.8;
}

.separator {
    position: relative;
    text-align: center;
    margin: 20px 0;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-image: repeating-linear-gradient(
        to right,
        #2c2c2c 0px,
        #2c2c2c 15px,
        transparent 15px,
        transparent 30px
    );
    transform: translateY(-50%);
}

.separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 14px,
        #2c2c2c 14px,
        #2c2c2c 16px,
        transparent 16px,
        transparent 30px
    );
    transform: translateY(-50%);
}

.separator-text {
    position: relative;
    display: inline-block;
    background: #f7a072;
    padding: 0 15px;
    color: #2c2c2c;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

.footer-link {
    font-family: 'Permanent Marker', cursive;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.4rem;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recipe-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recipe-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-instructions {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.highlight {
    background-color: #e0e0e0;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .recipe-card {
        padding: 20px;
    }
    
    .recipe-title {
        font-size: 1.2rem;
    }
}

