@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Bubblegum+Sans&family=Gorditas:wght@400;700&family=Peralta&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Rubik+Glitch&family=Tangerine:wght@400;700&display=swap');
@keyframes breathe {
    0% {
        background-size:490px;
    }
    50% {
        background-size:600px;
    }
    100% {
        background-size: 490px;
    }
}

body {
flex-direction: row;
margin: 0px;
display: flex;
max-width: 100vw;
height:100vh;
justify-content: center;
align-items: center;

}

.content {
    background-color: #0000007a;
backdrop-filter: blur(5px);
    color: white;
    width: 80%;
    height: 90%;
    max-width:80%;
    overflow-y: auto;
    overflow-x: hidden;
    border: solid 7px #000000;
    margin:40px;
    justify-content: center;
    align-items: center;
    padding: 15px;

    animation: fade-in;
    animation-duration: 2.5s;
}

h1 {text-align: center;
    font-size: 60px;
    color: rgb(255, 255, 255);}

nav {
    width:350px;
    max-width:300px;
    max-height:100%;
    overflow-y: auto;
    overflow-x: hidden;
    overflow-wrap: normal;
    height: 100%;
    float:left;
    background-color: #0000007a;
backdrop-filter: blur(5px);
    box-shadow: 0px 0px 0px 7px black;
    padding-left: 15px;
    padding-right:10px;
    position:sticky;
    top:0px;
    color: white;
    scrollbar-color:#35010ca9 black;

    animation:slide-left1;
    animation-duration: 1s;
}

nav a {text-decoration:none;
color:inherit;
transition:.2s}
nav a:hover {color:red}
.content h2 {
    text-align: center;
}
nav p {
    margin:0px
}
.gallery {
    max-width: 100%;
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:30px;
    margin: 30px;
    justify-content:center;
    
    
}
article {
    flex: 1 1 480px;
    overflow-y: auto;
    overflow-x:hidden;
    background-color:rgba(0, 0, 0, 0.616);
    padding:20px;
    max-width: 480px;
    align-items: center;
    display: flex;
    flex-direction: column;

}
img {
    max-width: 100%;
    max-height:400px;
    transition: .4s;
    margin: auto;
    align-self: center;
    border-radius:10px;
}
img:hover {
    transform:scale(1.07);
    border-radius:0px;
}

nav h3 {
    display:inline-block
}
hr {
    border-color:white
}