body {
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 40px;
    font-family: 'Courier New';
}

img {
    border-radius: 20px;
}

p {
    font-weight: bold;
    font-family: 'Courier'
}

.Scott {
    cursor: pointer;
    text-decoration-color: blue;
    color: rgb(0, 0, 0);
    border-radius: 20px;
    border-color: black;
    font-family: 'Courier New';
}

.Scott:hover {
    background-color: black;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rand {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;

}

.item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.checkbox-toggle {
    display: none;
}

.patrat {
    width: 300px;
    height: 300px;
    overflow: hidden;
    opacity: 0;
    position: relative;
    cursor: pointer;
    display: block;
    border-radius: 20px;
}

.patrat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;

}

.patrat:hover img {
    transform: scale(1.1);
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(235, 20, 181, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.patrat:hover .overlay {
    opacity: 1;

}

.overlay-text {
    color: white;
    font-size: 24px;
    font-family: 'Courier New';
    text-align: center;
    padding: 20px;

}

.text-detalii {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #f0f0f0;
    text-align: center;
    padding: 0 20px;
    width: 300px;
    border-radius: 20px;
}

.checkbox-toggle:checked~.text-detalii {
    max-height: 300px;
    padding: 20px;
    border: 2px solid #333;
    margin-top: 10px;

}

.text-detalii p {
    margin: 0;
    border-radius: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.slide-left-1 {
    animation: slideIn 1s forwards;
    animation-delay: 0s;
}

.slide-left-2 {
    animation: slideIn 1s forwards;
    animation-delay: 0.3s;
}

.slide-left-3 {
    animation: slideIn 1s forwards;
    animation-delay: 0.6s;
}

.slide-right-1 {
    animation: slideInRight 1s forwards;
    animation-delay: 0s;
}

.slide-right-2 {
    animation: slideInRight 1s forwards;
    animation-delay: 0.3s;
}

.slide-right-3 {
    animation: slideInRight 1s forwards;
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        transform: translateX(-500px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(500px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.neont {
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 90px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 90px #ff005e;
    }

    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 30px #00d4ff, 0 0 50px #00d4ff, 0 0 70px #00d4ff, 0 0 90px #00d4ff;
    }
}

.neon {
    animation: disparitie 0s forwards;
    animation-delay: 6s;
    font-size: 30px;

}

@keyframes disparitie {
    to {
        display: none;
        visibility: hidden;
    }
}

.cursor {
    position: relative;
    width: 24em;
    margin: 0;
    text-align: center;
    font-size: 30px;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
    color: #fff;
}

.typewriter-animation {
    animation:
        typewriter 5s steps(50) 1s 1 normal both,
        blinkingCursor 500ms steps(50) infinite normal;
    animation-delay: 6s;
}

@keyframes typewriter {
    from {
        width: 0
    }

    to {
        width: 100%
    }

    to {
        display: none;
        visibility: hidden;
    }
}

@keyframes blinkingCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }

    to {
        border-right-color: transparent;
    }
}

body {
    margin-top: 4em;
    padding: 5em;
    color: #f0f0f0;
    font-family: 'Courier New';
}

.containere {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: row;
    overflow: hidden;
    background-color: #00d4ff;
    margin: 0;
    padding: 20px;
    width: 0;
    opacity: 0;
    animation: containere 3s ease forwards;
    animation-delay: 12s;
    border-radius: 20px;

}

.box a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    font-size: 20px
}

.box:hover {
    background-color: #eff302;
    border-radius: 20px;

}

@keyframes containere {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}