* {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 0.6s;
    /*margin: 40px 20px 0 20px;*/
}

.showcase header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase .heading{
    width: 58%;
    padding-bottom: 10px;
}

.showcase .heading h3{
    font-size: 2.3em;
    border-bottom: 3px solid #fff;
}

.showcase .heading h3 span{
    font-weight: 100;
    font-weight: bolder;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo a {
    text-decoration: none;
    color: white;
}

.rewind a {
    text-decoration: none;
    color: white;
    font-size:medium;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.gallery img {
    width: 100%;
}

/*side menu styling*/
.showcase.active {
    right: 275px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url('ham.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}

.toggle.active {
    background: url('hamclose.png');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
}

.menu {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: flex-start; /*vertical*/
    justify-content: center; /*horizontal*/
}

.menu ul {
    position: relative;
    list-style: none;
    top: 45%;
}

.menu ul li a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #111;
}

.menu ul li a:hover {
    color: grey;
}
/*side menu style end*/

/*mobile friendly*/
@media screen and (max-width: 600px)
{
    .showcase {
        display: block;
        padding: 150px 50px;
    }
    .showcase header{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 40px 50px;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo img {
        height: 50px;
        width: auto;
    }
}