.media-container {
    text-align: center;
    margin-top: 50px;
}

img {
    width: 80%;
    max-width: 600px;
    height: auto;
}

body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
        }


        button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: #666;
            color: white;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #333;
        }
