Body {
    margin: 0;
    padding: 0;
    color:white;
    background-image: url('../images/brick.jpg');
   
}

.navbar {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    height: 90px;
}

.navbar a{
    color: #fe2ae5da;
    text-shadow: 2px 2px #911582f5;
    margin: auto 0;
    font-size: 3em;
    text-decoration: none;
}

.navbar a:hover {
    color: rgba(240, 248, 255, 0.844);
    text-shadow: 2px 2px aliceblue;
}

.active {
    color: white;
}

h1, h2, h3, a {
    font-family: 'Allura', cursive;
}

h2, h3{
    text-align: center;
    color: #02ffeaa6;
    text-shadow: 1.25px 1.25px #0a3a36;
    font-size: 2.5em;
}

h1{
    font-size: 4em;
    color: #be14aaa6;
    text-shadow: 1.5px 1.5px #eb17d2f5;
    text-align: center;
    animation-name: burnout;
    animation-duration: 10s;
}

@keyframes burnout {
    0% {color: #be14aaa6; text-shadow: 1.5px 1.5px #eb17d2f5;}
    10% {color: #5a585aa6; text-shadow: 1.5px 1.5px #f1f1f1;}
    20% {color: #be14aaa6; text-shadow: 1.5px 1.5px #eb17d2f5;}
    25% {color: #5a585aa6; text-shadow: 1.5px 1.5px #f1f1f1;}
    30% {color: #be14aaa6; text-shadow: 1.5px 1.5px #eb17d2f5;}
    60% {color: #5a585aa6; text-shadow: 1.5px 1.5px #f1f1f1;}
}

main{
    width: 80%;
    margin: 0 auto;
}

a{
    color: aqua;
}

footer{
    height:20px;
    text-align: center;
    font-size: 1.5em;
}

.bdrimg{
    width: 50%;
    margin: 0 auto;
    border: 50px solid black;
    padding: 15px;
    border-image: url(../images/border.png) 36% round; /*This code represents using your own image to create a border around an element*/
}

aside {
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 3em;
}

aside a{
    text-decoration: none;
}

.left {
    position: absolute;
    top: 20%;
    left: 20px;
    height: 1400px;
}

.left img{
    margin-top: 20px;
}

.right {
    position: absolute;
    top: 20%;
    right: 20px;
    height: 1400px;
}

main p {
    text-align: center;
    font-size: 2em;
}

/***************************************************************************************
CREDIT FOR THE IDEA OF THIS CODE GOES TO                                               |
Puput Tallulah - https://dev.to/puputtallulah/photography-showcase-with-css-only-5b25  |
***************************************************************************************/
.tattooGallery img {
    width: 20%;
    border-radius: 10PX;
    margin: calc(10%/6);
    transition: all 0.5s ease;
}

/*The transition property makes sure when the zoom takes effect, it'll happen smoothly.*/

img:hover {
    box-shadow: #13e925 0px 13px 27px -5px, #8cff76 0px 8px 16px -8px;
    margin: calc(10%/6);
    cursor: pointer;
    z-index: 9999;
    transform: scale(1.5);
    cursor: default;
}

/*Using the transform property, I define the scale() method, where the image width will increase on hover by 1.5 but of course it can be bigger than that, depends on your liking. The z-index is there so as to ensure when zoomed in, it will always be stacked on top of everything else.*/

