* {
    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;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.03;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: whitesmoke;*/
  mix-blend-mode: overlay;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo a {
    text-decoration: none;
    color: white;
}

img {
    height: auto;
    max-width: 100%;
}

.preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(5, 450px);
    grid-auto-flow: row dense;
    grid-gap: 20px;
    margin: 0 0.65rem;
}

.preview img {
    display: flex;
    padding: 10px;
    padding-top: 60px;
}

.preview h2 {
    font-family: 'Times New Roman', serif;
    color: #fff;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
    text-decoration: none;
    font-size: large;
}

.stack {
    height: auto;
    margin: 0.5rem;
    position: relative;
    text-align: center;
    color: #fff;
    transition: .3s;
}

.stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack h2 {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 1000%);
}

.stack:hover {
    transform: scale(1.05);
}

/*
.showcase .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dream img {
    height: auto;
    width: 400px;
}

.showcase .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;  
}

.showcase .box .dream img{
    width: 100%;  
    padding-bottom: 15px;
    border-radius: 3px;
}
*/

/*13 minutes on the YouTube video*/

/*side menu styling*/
.showcase.active {
    right: 300px;
}
.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;
}

.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: 400%;
    display: flex;
    align-items: start; /*vertical*/
    justify-content: center; /*horizontal*/
}

.menu ul {
    position: relative;
    list-style: none;
    top: 12%;
}

.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*/


@media screen and (max-width: 600px)
{
    .logo img {
        height: 50px;
        width: auto;
    }
    .preview h2 {
        font-family: 'Times New Roman', serif;
        color: #fff;
        text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
        text-decoration: none;
        font-size:small;
    }
    /*
    .preview {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-rows: repeat(5, 450px);
        grid-auto-flow: row dense;
    }

    .stack {
        margin: 0.7rem;
    }

    .stack:first-child {
        grid-row: span 1;
    }

    .stack:nth-child(2) {
        grid-column: 3/4;
        grid-row: span 2;
    }

    .stack:nth-child(5),
    .stack:nth-child(7) {
        grid-row: span 2;
    }
    */
}