body {

    text-align: center;
    max-width: 100%;
    background: linear-gradient(135deg, #ddbcdf, #c5a3d9);
    font-family: "Roboto", sans-serif;
    margin: 20px auto;
    max-width: 1000px;
    padding: 20px;
    font-size: 20px;

}

main {
    position: relative;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 0;
}


main::before {
    content: "jöö";
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 18px;
    background: linear-gradient(270deg, #ffffff, #9b59b6, #281d2c, #9b59b6);
    background-size: 600% 600%;
    animation: gradient-border 10s ease infinite;
    z-index: -1;

    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;


    padding: 10px;
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


h1 {

    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    text-shadow: 2px 2px 6px rgba(90, 42, 131, 0.5);

}


p {
    
    line-height: 1;
    padding-top: 50px;
    color: #000000;

}



img {
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(90, 42, 131, 0.5);
}

