body {
    margin: 0;
    padding: 0;
    background-color: rgb(10,10,10);
    color: rgb(240,240,240);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    font-family: Verdana, Tahoma, sans-serif;
    overflow: hidden;
}

#bgVideo {
    position: fixed;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    z-index: -100;
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 15px;
    margin-top: 5px;
    font-size: 10px;
    line-height: 25px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(240,240,240);
}

.share-button svg {
    margin-left: 12px;
    margin-top: 10px;
    color: rgb(0,0,0);
}

.container {
    width: 91%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: space-between; 
    padding-bottom: 120px;
    flex-grow: 1;
}


h1 {
    font-size: 20px;
    margin-bottom: 5px;
}

.job-title {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 15px;
    color: rgba(240, 240, 240, 0.706);
}

a {
    text-decoration: none;
    color: rgb(240,240,240);
}

.tiles-row {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.tiles-column {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.tile {
    background-color: rgb(37,37,37);
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
}

.contact_tile {
    width: 100%;
    background-color: rgb(37,37,37);
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
}

.contact-links {
    display: flex;
    justify-content: center;
}

.tile:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.02);
}

.tile-share-button {
    margin: 8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(52,52,52);
}

.tile-share-button svg {
    margin-left: 12px;
    margin-top: 10px;
}

.tile-share-button.hide {
    opacity: 0;
    visibility: hidden;
}

.tile:hover .tile-share-button.hide {
    opacity: 1;
    visibility: visible;
}

.image-container {
    height: 96px;
    width: 96px;
    min-height: 96px;
    min-width: 96px;
    border-radius: 48px;
    overflow: hidden;
}

.image-container img {
    height: 100%;
}

.icon {
    margin: 4px 8px;
    width: 44px;
    height: 44px;
}

.icon-mail {
    width: 30px;
    height: 30px;
}
.icon-twitter {
    width: 28px;
    height: 28px;
}

.links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-item {
    display: flex;
    align-items: center;
}

.image-tiles-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin-top: 5%;
    position: relative;
}

.glb-tiles-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
}

.image-tile {
    background-image: url('./public/iyc_banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 0px;
    width: 70%;
    height: 0;
    padding-bottom: 25.25%;
    border-radius: .25rem;
    margin-top: auto;
    position: relative;
    display: inline-block;
}
.image-tile.img2 {
    background-image: url('./public/idv_banner.png');
}

.gradient-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96%;
    margin: 15px auto;
}

.subgradient {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin-top: auto;
    position: relative;
}

.gradient {
    border: 0;
    border-radius: 6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(13, 8, 96, 1) 0%,
        rgba(9, 9, 121, 1) 21%,
        rgba(6, 84, 170, 1) 51%,
        rgba(0, 255, 113, 1) 100%
    );
}

.gradient-left {
    margin-right: 10px;
}

.gradient-right {
    margin-left: 10px;
    background: linear-gradient(
        90deg,
        rgba(0, 255, 113, 1) 0%,
        rgba(6, 84, 170, 1) 49%,
        rgba(9, 9, 121, 1) 79%,
        rgba(13, 8, 96, 1) 100%
    );
}


.gradient-text {
    position: relative;
    display: inline-block;
    background-color: #00000039;
    border-radius: 10px;
    padding: 0 10px;
    z-index: 1;
}

.icon img {
    width: 47px;
    height: 47px;
}

.icon svg {
    margin-top: 4px;
    width: 40px;
    height: 40px;
}
