body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

@font-face {
    font-family: "fairymuffin"; 
    src: url("../../fonts/Fairymuffin.woff2") format("woff2");
}

h1 {
  font-family: fairymuffin, sans-serif;
    color: #915ff0;
}

h4 {
  font-family: fairymuffin, sans-serif;
  color: #915ff0;
}

.button-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.button {
    background: linear-gradient(to right, #915ff0, #dfc5fe);
    color: white;
    font-family: fairymuffin, sans-serif;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.button:hover {
    background: linear-gradient(to right, #dfc5fe, #915ff0);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 5px;
}

.gallery img {
    max-width: 200px;
    max-height: 300px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 5px;
}

.gallery img:hover {
    transform: scale(1.05);
}

.gallery2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 5px;
}

.gallery2 img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 5px;
}

.gallery2 img:hover {
    transform: scale(1.05);
}

.logo {
  max-width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}



.focus-image img {
    width: 70%;
    padding: 5px;
    max-width: 700px;
    border-radius: 10px;
    margin: 20px 0;
}