
  @import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&family=Ubuntu:wght@400;500&display=swap');

body{

    display: flex;
    justify-content: flex-start;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    background-color: rgb(12, 12, 12);
    color: #ffffff;
    }
html{
    font-family: 'Ubuntu', sans-serif;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}
*{

    margin: 0%;
    padding: 0%;

}

video{
   width: 100%; height:100vh;
   object-fit:fill;

}


canvas{
    visibility: hidden; position: fixed ; width: 1980px; height: 1020px;
}
body {
    margin: 0;
}

.camera-container {
    position: relative;
    height: 100vh;
    overflow-x: hidden;
    width: 100%;
}



#shutter-button {
    bottom: 20px;


    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: linear-gradient(65deg,#e9072d, #d710ff);
    color: #fff;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 20px black);
    
}
.bi-camera2{
    fill: rgb(238, 238, 238);
    width: 60%;
    height: 60%;
}

.button-group {
    position: fixed;
    bottom: 20px;
align-items: center;

    display: flex;
    justify-content: center;
    width: 100%;
    height: max-content;
}

.fake-button{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
    outline: none;
    margin: 1rem;
    transition: background-color 0.3s
}

.fake-button:hover, #shutter-button:hover {
    background-color: #2980b9;
}
.top{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    padding-top: 4%;
    position: absolute;
    height: max-content;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color:rgba(10, 10, 10, 0.466);
}
.top span{
    width: 100%;
    text-align: center;
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    background-image: url(./iPhone-14-Ori-Dynamic-iSland.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding:  .2rem 0 .2rem 0;
}
.noAccess{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2980b9;
    color: #ffffff;
    font-size: 150%;
    white-space: pre-line;
    text-align: center;
    flex-direction: column;
    z-index: -1;
    opacity: 0%;
    transition: ease-in 300ms;
    position: fixed;
    visibility: hidden;
    background-image: none;
    background-position: center;
    background-repeat: no-repeat;
    transition: ease-in 300ms;

}
.noAccess span{
    max-width: 100%;
    height: max-content;
    padding-left: 10%;
    padding-right: 10%;
}
.noAccess svg{
    width: 4rem;
    height: 4rem;
    margin-bottom: 5vh;
}

.loading {
    border: 8px solid #0a0a0a;
    border-top: 8px solid #ffffff; /* Change this color to match your design */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.welcomeNote{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-image: linear-gradient(#0e0e0eef, rgba(20, 20, 20, 0.692)), url('./aea0a22b-449f-4af0-b7d6-b6b134d7f25d.jpg');
 flex-direction: column;
 color: transparent;
 position: fixed;
 z-index: 1000;
}
.welcomeNote img{
    width: 60%;
    border-radius: 1rem;
}
.welcomeNote span{
    color: transparent;
    background-image: linear-gradient(65deg,#e9072d, #d710ff);
    -webkit-background-clip: text;
    font-size: 240%;
    width: 70%;
    text-align: center;
    margin-top: 2vh;
}
.go{
    width: max-content   ;
    padding: .2rem 4% .2rem 4%;
    height: max-content;
    background-image: linear-gradient(65deg,#e9072d, #d710ff);
    border-radius: 1rem;
    font-size: 200%;
    margin-top: 10vh;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 50px #e9072d;
}