@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Open+Sans:wght@400;500&family=Poppins:wght@300;400;500;600;700;800&family=Quicksand:wght@400;700&family=Roboto:ital,wght@0,100;0,400;0,500;0,900;1,100;1,300;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box; 
}
.myname
{
    position: absolute;
}

:root{
    --main-bg-color:#19192d;
    --text-color:white;
    --font-family:'Quicksand', sans-serif;
    --screen-bg-color:#000000;
    --icon-bg-color:#C4C4C4;
    --danger:#ff0000;
}
#main-container{
    width: 100%;
    height: 100vh;
    background-color: var(--main-bg-color);
}

/* Header Section Styling */

.header-banner{
    height: 15%;
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: var(--main-bg-color);
    color: var(--text-color);
}
#name{
    font-family: var(--font-family);
    margin-left: 0.8rem;
    font-weight: 600;
    line-height: 1.5625rem;
    font-size: 0.995rem;
    width:15rem;
    height: 2.875rem;
    text-transform: uppercase;
    color: var(--text-color);
}
.img-p{
    margin-right: 1rem;
    display: flex;
}
.img-recording{
    width: 1.625rem;
    height: 1.625rem;
    margin-right: 0.5625rem;
    position: relative;
    left:3.567rem;
}
.recording{
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 1.5625rem;
    font-size:0.995rem;
    width:10rem;
    height: 2.875rem;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-end;
    color: var(--text-color);
}

/* Screen Section Styling */

.screen{
    display: flex;
    width: 100%;
    height: 70vh;
    background-color:var(--main-bg-color);
}
.first-screen{ 
    width: 49%;
    /* background:url(../image/person1.jpeg) no-repeat; */
    background-size: cover;
    /* flex: 1 1 250px; */
}
.second-screen{  
    width: 49%;
    /* background:url(../image/person-2.webp) no-repeat; */
    background-size: cover;
    /* flex: 1 1 250px; */
    /* display: none; */
}
/* Extra Section  */

#none-section{
    display: none;
}
/* video{
    max-width: 374px;
    min-width: 375px;
} */

/* Footer Section Styling */

.footer{
    height: 15%;
    width: 100%;
    background-color: var(--main-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.icons-section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 60%;
    height: 6rem;
    background-color: var(--main-bg-color);
}
.icons{
    width: 2rem;
    height: 2.125rem;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;   
}
.icons:hover {
    transform: translateY(-7px);
}

.icons:active {
    transform: translateY(-1px);
}

/* Icons that doesn't need to be displayed */

#cross{
    display: none;
}
.cross{
    display: none;
}

.top-box{
    background-color: rgb(14 6 6);
    position: fixed;
    width: 30%;
    height: 30%;
    top: 20.5%;
    left: 35.5%;
    display: block;
    box-shadow: 0 0 5px white;
    border-radius: 1px;
    z-index: 999;
    border: 2px solid white;
}
