* {
    margin: 0;
    padding: 0;
}

body {
    background: url('img/bg.webp') no-repeat center/cover;
    overflow: hidden;
}

::selection {
    background: white;
}

.b {
    border: 1px solid rgb(214, 111, 0);
}

.partitiondiv {
    border: 3px solid black;
    box-shadow: 3px 0px 20px 1px #7a7a7a;
}

.container {
    width: 99vw;
    height: 99vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannercontainer {
    background-color: #9f8888;
    width: 60%;
    height: 70%;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
}

.leftdiv {
    width: 40%;
    height: 100%;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.rightdiv {
    width: 60%;
    height: 100%;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

.MyName {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

h1 {
    font-family: "Bungee Spice", "Rubik Doodle Shadow";
    font-size: 5rem;
}

h2 {
    font-family: "Bungee Spice", "Rubik Doodle Shadow";
    font-size: 1.8rem;
}

h4 {
    font-family: "Rubik Doodle Shadow", system-ui;
    font-size: 1rem;
}

.left1 {
    width: 100%;
    height: 65%;
    border-top-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profilephoto {
    border-radius: 50%;
    width: 75%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#profilepic {
    height: 100%;
    width: auto;
}

.left2 {
    width: 100%;
    height: 35%;
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.right1 {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right2 {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

/* .container {
    width: 100%;
    text-align: center;
    margin-top: 25vh;
} */

.playBut {
    /* border: 1px solid red; */
    display: inline-block;
    transition: all 0.5s ease;
}

.playBut .triangle {
    transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #f8aa28;
    transform: translateY(0);
}

.playBut:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 0;
    animation: nudge 0.5s ease-in-out;
}

@keyframes nudge {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    30% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
        opacity: 0.5;
    }

    70% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
        opacity: 0;
    }
}

/* .playBut:hover .circle {
    stroke-dashoffset: 0;
    opacity: 0;
} */



video {
    box-shadow: 0px 0px 20px 11px #7a7a7a;
}

.right3 {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS */
.redirectbtn {
    appearance: none;
    background-clip: padding-box;
    background-color: initial;
    background-image: none;
    border-style: none;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-family: Eina01, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    margin: 0;
    min-height: 64px;
    outline: none;
    pointer-events: auto;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    width: auto;
    word-break: keep-all;
    z-index: 0;


    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 768px) {
    .redirectbtn {
        padding: 19px 32px;
    }
}

.redirectbtn:before,
.redirectbtn:after {
    border-radius: 80px;
}

.redirectbtn:before {
    background-image: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -2;
}

.redirectbtn:after {
    background-color: initial;
    background-image: linear-gradient(#541a0f 0, #0c0d0d 100%);
    bottom: 4px;
    content: "";
    display: block;
    left: 4px;
    overflow: hidden;
    position: absolute;
    right: 4px;
    top: 4px;
    transition: all 100ms ease-out;
    z-index: -1;
}

.redirectbtn:hover:not(:disabled):before {
    background: linear-gradient(92.83deg, rgb(255, 116, 38) 0%, rgb(249, 58, 19) 100%);
}

.redirectbtn:hover:not(:disabled):after {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition-timing-function: ease-in;
    opacity: 0;
}


.redirectbtn>.text {
    padding-right: 1.5em;
    display: block;
    position: relative;
    text-transform: uppercase;
    padding: .5em 1em;
    transition: all 0.15s ease-out;
    font-weight: 700;
    border-right: 2px solid rgba(255, 255, 255, .1);
    letter-spacing: 1px;
    margin-right: 3em;
    font-size: 13px;
}



.redirectbtn>.icons {
    display: flex;
    width: 3em;
    height: 100%;
    position: absolute;
    flex-direction: column;
    top: 0;
    transition: all 0.15s ease-out;
    align-items: center;
    right: 0;
    justify-content: center;
    margin-right: 1rem;
}

.redirectbtn:hover .text {
    transform: translateX(calc(-100% - 3em));
}

.redirectbtn:hover .icons {
    width: 100%;
    transform: scale(1.3);
    margin-right: 0;
}

.arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 6px;
    transition: all .3s ease;
}

.arrow::before {
    display: block;
    background-color: currentColor;
    width: 3px;
    transform-origin: bottom right;
    height: 2px;
    position: absolute;
    opacity: 0;
    bottom: calc(-2px / 2);
    transform: rotate(45deg);
    transition: all .3s ease;
    content: "";
    right: 0;
}

.redirectbtn:hover>.arrow>.arrow {
    transform: rotate(-45deg) translate(4px, 4px);
    border-color: text-hover-color;
}

.redirectbtn:hover>.arrow>.arrow::before {
    opacity: 1;
    width: 8px;
}



@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);

:root {
    --timing: 265ms;
    --iconColor: orange;
    --accent: rgb(214, 111, 0);
    --bluefade: #0043E0;
    --gradient: #00B5F5;
}

.social-container {
    /* width: 400px; */
    text-align: center;
}

.social-icons {
    padding: 0;
    list-style: none;
    margin: 1em;
}

.social-icons li {
    display: inline-block;
    margin: 0.15em;
    position: relative;
    font-size: 1.2em;
}

.social-icons i {
    color: #fff;
    position: absolute;
    top: 21px;
    left: 21px;
    transition: all 265ms ease-out;
}

.social-icons a {
    display: inline-block;
}

.social-icons a:before {
    transform: scale(1);
    content: " ";
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: block;
    /* background: linear-gradient(45deg, orange, #d66f00); */
    background: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    transition: all 265ms ease-out;
}

.social-icons a:hover:before {
    transform: scale(0);
    transition: all var(timing) ease-in;
}

.social-icons li a:hover i {
    transform: scale(2.2);
    content: " ";
    color: orange;
    /* background: linear-gradient(45deg, orange, rgb(214, 111, 0)); */
    background: linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all var(timing) ease-in;
}


@media only screen and (max-width: 1360px) {
    h2 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 0.8rem;
    }

    .redirectbtn {
        padding: 10px 20px;
    }

}

@media only screen and (max-width: 1290px) {
    .social-icons a:before {
        width: 3rem;
        height: 3rem;
    }

    .social-icons i {
        top: 15px;
        left: 15px;
    }

}


@media only screen and (max-width: 1235px) {
    h1 {
        font-size: 3rem;
    }

}


@media only screen and (max-width: 1099px) {
    .social-icons a {
        font-size: 1rem;
    }

    .social-icons a:before {
        width: 2.5rem;
        height: 2.5rem;
    }

    .social-icons i {
        top: 13px;
        left: 13px;
    }

    .profilephoto {
        height: 55%;
    }
}

@media only screen and (max-width: 769px) {
    .bannercontainer {
        width: 80%;
    }

    .left1 {
        height: 60%;
    }

    .left2 {
        height: 40%;
        justify-content: flex-start;
    }

    h2 {
        font-size: 120%;
    }

    h4 {
        font-size: 100%;
    }

    .social-icons a {
        font-size: 1.1rem;
    }

    .social-icons a:before {
        width: 2.5rem;
        height: 2.5rem;
    }

    .social-icons i {
        top: 12px;
        left: 12px;
    }

}

@media only screen and (max-width: 426px) {

    .bannercontainer {
        flex-direction: column;
        height: 70%;
        align-items: center;
    }

    .leftdiv {
        display: flex;
        width: 100%;
        height: 39%;
    }

    .partitiondiv {
        width: 100%;
    }

    .rightdiv {
        height: 59%;
    }

    .left1 {
        height: 100%;
        width: 40%;
    }

    .left2 {
        height: 100%;
        width: 60%;
    }

    h2 {
        font-size: 150%;
    }

    h4 {
        font-size: 80%;
    }

    .MyName {
        height: 60%;
    }

    .social-container {
        display: flex;
        height: 40%;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    .social-icons a {
        font-size: 0.8rem;
    }

    .social-icons a:before {
        width: 2rem;
        height: 2rem;
    }

    .social-icons i {
        top: 10px;
        left: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .right1 {
        height: 25%;
    }

    .right2 {
        height: 45%;
    }

    svg {
        width: 100px;
        height: 100px;
    }

}


@media only screen and (max-width: 395px) {

    h2 {
        font-size: 150%;
    }

    h4 {
        font-size: 70%;
    }

    .social-icons a:before {
        width: 1.8rem;
        height: 1.8rem;
    }

    .social-icons i {
        top: 8px;
        left: 8px;
    }

    .left1 {
        justify-content: flex-end;
    }

    .redirectbtn {
        padding: 5px 5px;
    }

    .redirectbtn>.icons {
        width: 2em;
    }

    .rightdiv {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 1.9rem;
    }

    .right2 {
        width: 135%;
    }
}