@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@font-face {
    font-family: myFont;
    src: url(../Dancingscript.otf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

header {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0;
    left: 0;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
    padding: 0 15px;
}

.allcontent {
    width: 100%;
    max-width: 975px;
    height: fit-content;
    margin: 25px auto 50px;
    border: 1px solid #033629;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 0.65em #44e0b7, 0 0 0.65em #44e0b7, 0 0 0.65em #033629;
    background-color: transparent;
    backdrop-filter: blur(4px);
}

.container1 {
    width: 100%;
}

.banner {
    position: relative;
    background: url(../pics/coder.jpg) no-repeat center;
    background-size: cover;
    height: 250px;
    min-height: 180px;
}

.infowrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* height: 1000px; */
}

.headline {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 5px 0px;
}

.headline span {
    font-family: 'Orbitron', 'josefin sans', 'poppins';
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 0.35em #44e0b7, 0 0 0.50em #44e0b7, 0 0 0.50em #033629;
}

.textmedia {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.textmedia p {
    width: 100%;
    max-width: 620px;
    font-family: 'josefin sans', 'poppins';
    font-size: clamp(18px, 4.5vw, 25px);
    /* font-size: 25px; */
    color: #fff;
    text-align: center;
    padding: 5px;
}

.textmedia2 {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    font-family: 'josefin sans', 'poppins';
    font-size: clamp(22px, 5vw, 32px);
    /* font-size: 32px; */
    color: #fff;
}

.hireme {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0px 15px 0px;
}

.hiremebtn {
    background: transparent;
    color: #fff;
    border: none;
    padding: 10px 7px;
    border-radius: 5px;
    font-family: 'Orbitron', 'Josefin Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 0.35em #44e0b7, 0 0 0.50em #44e0b7, 0 0 0.50em #033629;
    white-space: nowrap;
}

.hiremebtn:hover {
    text-shadow: 0 0 0.35em #44e0b7, 0 0 0.50em #44e0b7, 0 0 0.50em #033629;
}

.hiremebtn:active {
    transform: translateY(5px);
    text-shadow: 0 0 0.35em #44e0b7, 0 0 0.50em #44e0b7, 0 0 0.50em #033629;
    box-shadow: 0 0 0.35em #44e0b7, 0 0 0.50em #44e0b7, 0 0 0.50em #033629;
}

/* .borders {
    border: 1px solid #2c3640e1;
} */

.picwrapper1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0px 30px 0px;
}

.flexgrid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    justify-content: space-evenly;
    align-content: space-evenly;
}

.flexgrid img {
    height: 200px;
    width: auto;
    margin-bottom: 30px;
}