* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background: #ffffff;
    color: black;
    min-height: 100vh;
}

.gallery-header {
      text-align: center;
      font-size: 3rem;
      font-weight: bolder;
      color: #fba506;
      margin-top: 15px;
      margin-bottom: 50px;
}


.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    gap: 15px;
    justify-content: center;
    padding: 10px;
    
}

img {
    width: 350px;
    height: 250px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 2px 3px 5px blue;
    object-fit: cover;
}

.logo {
    box-shadow: none;
}

/* scroll */

.scroll {
    padding: 25px;
    text-align: center;
    button {
        padding: 15px;
        border-radius: 5px;
        a {
            text-decoration: none;
            font-size: 1rem;
            cursor: pointer;
        }
    }
}