body {
    margin: 0;
    padding: 0;
    background-color: rgb(10, 10, 10);
    color: rgb(240, 240, 240);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --bg-color: #dac504;
    --text-color: #dac504;
    --border-clr: #000;
    --btncolor1: rgba(7, 7, 133, 0.856);
    --btncolor2: rgba(7, 7, 133, 0.856);
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.background-video{
    width: 100%;
    height: 100vh;
    margin: 0;
    object-fit: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

video {
    opacity: .7;
}


.share-button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--bg-color);
    border-radius: 20px;
    background-color: var(--border-clr);

}

.share-button i {
    margin-left: 12px;
    margin-top: 12px;
    color: var(--bg-color);
}



.container {
    width: 100%;
    margin: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.names{
    margin: auto;
}

.socials{
    margin:auto;

}


h1 {
    color: var(--text-color);
    background-color: var(--border-clr);    
    font-size: 20px;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 15px;
    padding: 8px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
}

a {
    text-decoration: none;
    color: rgb(240, 240, 240);
}


.tile {
    width: 800px;
    background-color: var(--border-clr);
    margin: 30px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    border: 2px solid var(--bg-color);
}

.tile:hover{
    transition: cubic-bezier(0.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.08);
}

.tile p{
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 4px;
    margin: auto 10px;  
}

.tile-share-button {
    margin: auto 10px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--bg-color);
    border-radius: 20px;
    background-color: var(--border-clr);
}

.tile-share-button i {
    margin-left: 12px;
    margin-top: 12px;
    color: var(--bg-color);
    
}

.image-container {
    height: 96px;
    width: 96px;
    margin: auto;
    border: 3px solid var(--text-color);
    border-radius: 48px;
    overflow: hidden;
}

.image-container img {
    height: 100%;
    
}

.icon {
    margin: 4px 8px;
    width: 40px;
    height: 44px;
}

.icon i {
    color: var(--bg-color);
    font-size: 30px;
    margin: 2px;
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}














