/* Add a black background color to the top navigation */
@keyframes goofy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.playwrite-no-1 {
    font-family: "Playwrite NO", cursive;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: bold;
  }



body{
    /* background-color: rgba(241,97,35,255); */
    background: url("background.png");
    background-size: 450px 300px;
}
.favicon{
    width: 250px;
    padding-top: 20px;
}

.tag{
    width: 600px;
    padding-right: 100px;
    padding-top: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.logo{
    justify-content: center;
    align-items: center;
    display: flex;
    width: 700px;
    margin: auto auto;
    padding-top: 40px;
    /* white rounded border */

}
.name{
    width: 500px;
    padding-left: 20px;
}
.nav {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    transition: background-color 0.5s ease-in-out;
    
}
.nav img{
    align-items: center;
    display: flex;
    height: 100px;
    padding-right: 20px;

}
.desc{
    width: 800px;
    padding-left: 100px;
}
/* .nav.scrolled {
    background-color: rgba(151, 109, 236, 0.87);
} */

  /* Style the links inside the navigation bar */
.nav a {
    float: right;
    display: flex;
    flex-direction: column;
    text-align: center;

    transition: background-color 0.5s ease-in-out;
    color: blue;
    font-weight: bolder;
}
  
  /* Change the color of links on hover */
.nav a:hover {
    background-color:rgba(0,0,0,.25);
    color: black;
}
  
  /* Add a color to the active/current link */
.nav a.active {
    background-color: #04AA6D;
    color: white;
}

.character{
    margin: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 5px solid white;
    border-radius: 20px;
    width: 700px;
}

.memes{
    margin: 0;
    padding-top: 100px;
    justify-content: center;
    align-items: center;
    display: flex;

}

  
.frame {
    background-color:#ddc;
    border:solid 5vmin #eee;
    border-bottom-color:#fff;
    border-left-color:#eee;
    border-radius:2px;
    border-right-color:#eee;
    border-top-color:#ddd;
    box-shadow:0 0 5px 0 rgba(0,0,0,.25) inset, 0 5px 10px 5px rgba(0,0,0,.25);
    box-sizing:border-box;
    display:inline-block;
    margin:15vh 2vw;
    height:80vh;
    padding:8vmin;
    position:relative;
    text-align:center;
    &:before {
        border-radius:2px;
        bottom:-2vmin;
        box-shadow:0 2px 5px 0 rgba(0,0,0,.25) inset;
        content:"";
        left:-2vmin;
        position:absolute;
        right:-2vmin;
        top:-2vmin;
    }
    &:after {
        border-radius:2px;
        bottom:-2.5vmin;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
        content:"";
        left:-2.5vmin;
        position:absolute;
        right:-2.5vmin;
        top:-2.5vmin;
    }
    animation: goofy-bounce 1s infinite;
  }