body {
    background-image: url("pattern.png");
    background-size: 150px 150px;
    background-repeat: repeat;
    background-color: #190F4F;

}

body h1 {
    Color: White;
    text-align: center;
    font-size: 75px;
    text-shadow: rgba(0, 0, 0, 0.475) 10px 10px;
    font-family: Jazz LET, fantasy;
}

.box h1 {
    width: 400px;
    height: 200px;
    background-color: #4d26f6;
    padding: 20px;
    margin: 20px;
    border: 10px #340c7a;
    border-style: ridge;
     background-image: linear-gradient(to bottom right, #957FF5, #4D26F6);
    
}

h2 {
    font-size: 300%;
    background-color: #f0f8ff94;
    color: rgb(6, 6, 134);
    width: 300px;
    padding: 10px;
    background-image: radial-gradient(to bottom left, #f0f8ff94, white);
    font-family: Courier, monospace;
}
.menu {
    position: fixed;
}
.menu a {
    display: block;
    background-image: radial-gradient(to bottom left, #f0f8ff94, white);
    background-color: rgba(240, 248, 255, 0.581);
    width: 300px;
    padding: 20px;
    color: rgb(6, 6, 134);
    text-align: center;
    
    padding: 14px 16px;
    font-size: 200%;
    text-decoration: none;
    font-family: Courier, monospace;
}

.menu a:hover {
    background-color: blue;
    color: white;
}



.image img {
    width: auto;
    height: 400px;
    
    
    image-orientation: inherit;
    border: 10px #4735ab;
    border-style: solid;
    border-radius: 25px;
}
img {
    background-color: #3d2f8e;
    display:unset;
    margin: 5px;
    
}
.image {
    padding-left: 350px; 
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.image :hover{
    animation: turnBigger 1s ease-in-out forwards;
    animation-delay: 1s;
    animation-direction:unset;
}
@keyframes turnBigger{ 
    from {height: 400px; right:0%; }
    to {transform:scale(200%);
    }
}
