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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url("Assets/Rinnegan.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 3000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.picture-element {
    margin-bottom: 40px;
    text-align: center;
}

picture {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.media-section {
    margin-bottom: 40px;
}

.media-section h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
    color: #333;
}

video, audio {
    display: block;
    width: 100%;
    margin: 10px 0;
}

@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    header h1 {
        font-size: 3em;
    }
}

@media (min-width: 1024px) {
    .picture-element {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .picture-element picture {
        flex: 1;
        margin: 0 10px;
    }
}