
body {
  background-image: url("./assets/fireblu.jpg");
  background-attachment: fixed;
  color: #FFF;
  font-size: 17;
  font-family: "Times New Roman", Times, serif !important;
}

.box {
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    background-color: #000000;
    text-align: center;
    border-width: 5px;
    border-top-color: #c3c3c3;
    border-left-color: #c3c3c3;
    border-bottom-color: #818181;
    border-right-color: #818181;
    border-style: solid;
}

.gallery {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.album {
    border: 2px solid #c3c3c3;
    margin: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    padding: 0px;
    transition: transform 0.3s ease; 
}

.album:hover {
    border: 2px solid #818181;
    transform: scale(1.2);
}

.album img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; 
}
