* {
    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 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 0.6s;
}

.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 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.02;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo a {
    text-decoration: none;
    color: white;
}

.main {
    width: 1130px;
    padding: 50px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.selfie img {
    height: auto;
    width: 400px;
    border-radius: 25px;
}

.about-text h1 {
    color: white;
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text h5 {
    color: white;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

span {
    color: grey;
}

.about-text p {
    color: #fff;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 14px;
    margin-bottom: 75px;
}

.contact {
    position: relative;
    bottom: 50px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*transform: translateY(-140px);*/
}

button {
    background: grey;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}

button:hover {
    background: transparent;
    border: 2px solid white;
}

/*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: 120%;
    display: flex;
    align-items: center; /*vertical*/
    justify-content: center; /*horizontal*/
}

.menu ul {
    position: relative;
    list-style: none;
}

.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: 100px 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;
    }
    .menu {
        height: 200%;
        align-items: start; /*vertical*/
    }
    .menu ul {
        top: 25%;
    }
    .selfie img {
        width: 200px;
        border-radius: 10px;
        margin-top: 10px;
        transform: translateX(50px);
        justify-content: center;
    }
    .about-text h1 {
        color: white;
        font-size: 25px;
        text-transform: capitalize;
        margin-bottom: 10px;
        text-align: center;
    }
    .about-text h5 {
        color: white;
        font-size: 12.5px;
        text-transform: capitalize;
        margin-bottom: 25px;
        letter-spacing: 2px;
        text-align: center;
    }
    .about-text p {
        color: #fff;
        letter-spacing: 1px;
        line-height: 28px;
        font-size: 11px;
        margin-bottom: 45px;
        text-align: center;
    }
    .contact {
        position: relative;
        bottom: 20px;
        z-index: 10;
        display: flex; 
        justify-content: center;
        /*align-items: center;
        transform: translateY(-110px);
        transform: translateX(75px);*/
    }
    .logo img {
        height: 50px;
        width: auto;
    }
}