* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  text-align: center;
}

body {
  font-family: sans-serif;
  background-color: #f5f5f5;
}

header {
  position: sticky;
  top: 0;
  background-color: #000000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  z-index: 1000;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.image-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  object-fit:scale-down;
}

.image-container img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border: 4px solid transparent;
  transition: transform 0.2s, border-color 0.2s;
}

.image-container img:hover {
  transform: scale(1.05);
}
.lines{
    position:fixed;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    pointer-events:none;
    z-index:999999999999999999999999999999999999999999999999999999999999;
    opacity:0.05;
}

.lines:before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    pointer-events:none;
    background:linear-xgradient(to bottom, transparent 50%, rgba(0, 0, 0, .5) 51%);
    background-size:100% 4px;
    will-change:background, background-size; animation:scanlines 0.2s linear infinite;
}

@keyframes scanlines{
    from{
        background:linear-gradient(to bottom, transparent 10%, rgba(0, 0, 0, .5) 51%); background-size:100% 4px; 
    }
    
    to{
        background:linear-gradient(to bottom, rgba(0, 0, 0, .5) 50%, transparent 51%);
        background-size:100% 4px;
    }
}

.other{
    width:100%;
    height:auto;
}
.topguy{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button{
    margin-right:16px;

}
.left{
    margin-left:16px;
    display:flex;
    justify-content:left
}
.right{
    padding:10px;
    display:flex;
    justify-content:right
}
body{
    background-color:#fff;
    background-image: url("tile.png");
    background-size: 125px;
    background-repeat: repeat;
    color:#000;
    font-size:20px;
    animation:fadeEffect 0.5s;
}