@import url("https://fonts.bunny.net/css?family=amita:700");
@import url("https://fonts.googleapis.com/css?family=Fantasy Slant|Monoton|'Fantasy Qelirole':400,400i,500,500i,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Fantasy Slant|Monoton|'Fantasy Qelirole':400,400i,500,500i,600&display=swap");
@font-face {
  font-family: 'Fantasy Slant';
  src: url('static/font/fantasy slant personal use.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Fantasy Qelirole';
  src: url('static\font\Fantasy Qelirole Serif.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
body {
    background: url(https://res.cloudinary.com/ritalbradley/image/upload/v1657644013/pexels-elijah-o_donnell-3473569_o7ohfd.jpg)
        center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items:end;
    margin: 60px 0 0 0;
    padding: 20px;
}

h1 {
    color: #fefae0;
    font-family: 'Fantasy Slant', sans-serif;
    margin: 20px auto;
    width: 90%;
    max-width: 450px;
    font-size: 2.5rem;
    text-align: center;
    border-bottom: 5px double #fff;
    justify-content:flex-end;
}

.container {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
   
}





img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 5px;
    border: 10px solid #fefae0;
    filter: grayscale(100%);
    transition-duration: 0.5s;
}

img:hover {
    border: 5px solid #fff;
    transform: scale(1.05);
    filter: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        width: 100%;
    }

    img {
        max-width: 90%;
        border: 5px solid #fefae0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        border-bottom: 6px double #bc6c25;
    }

    img {
        max-width: 100%;
        margin: 5px 0;
    }
}