/* typeface import */

@import url('https://fonts.googleapis.com/css2?family=Playwrite+CU:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');

@font-face{
    src: url(PicNic-Regular.otf);
    font-family: 'picnic';
}

html{   
    cursor: url(images/cursorentry2.png), auto;
}

::-webkit-scrollbar{
    width: 2vw;
}


::-webkit-scrollbar-thumb{
    background: whitesmoke;
}

::-webkit-scrollbar-track{
    background: black;
}

/* heading styling */

h1 {
    color: black(255, 35, 35);
    size: 0cm;
    font-family: 'picnic';
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
    text-align: center;

}
/* russian paragraph */

.paragraph1{
    color: black;
    font-size: 2vh;
    font-family: "Sofia Sans", system-ui;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin-left: 30%;
}

.paragraph1:hover{
    opacity: 0;
}

.paragraph2{
    color: black;
    font-size: 2vh;
    font-family: "Sofia Sans", system-ui;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin-left: 50%;
}
.paragraph2:hover{
    opacity: 0;
}

/* image 1,2 container */

.container{
    display: flex;
    justify-content: center;
    width: 100%;
}

.one{
    background-image: url(images/4.png);
    background-size: cover;
    height: 100vh;
}

.two{
    background-image: url(images/5.png);
    background-size: cover;
    height: 100vh;
}

/* container for the disappearign text in russian */

.container2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

/* last flex box */

.container3{
    display: flex;
    justify-content: center;
    width: 100%;
}

.gif1{
    height: 100vh;
}
.gif2{
    height:100vh ;
}

/* footer */

.footer{
    margin-left: .5em;
    margin-right: .5em;
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 95vw;
}



/* Media Querie iphone */

@media (max-width:940px){
    .one{
        background-image: url(images/4.png);
        background-size: cover;
        height: 50%;
        width: 50%;
    }
    
    .two{
        background-image: url(images/5.png);
        background-size: cover;
        height: 50%;
        width: 50%;
    }


    .paragraph1{ 
        margin-left: auto;
    }
    
    .paragraph2{
        margin-left: auto;
    }

    .gif1{
        height: 50%;
        width: 50%;
    }
    .gif2{
        height: 50%;
        width: 50%;
    }
}