*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body
{
    background-image: url(logoyk3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
nav
{
    width: 100vh;
    height: 100px;
    justify-content: space-around;
    padding: 20px;
}
.logoContainer
{
    display: flex;
}
.navLinksContainer
{
    align-items: center;
   
}
.navLinksContainer a
{
    text-decoration: none;
    color: white;
    cursor: pointer;

}
section
{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.loginInput
{
    width: 250px;
    height: 40px;
    border-radius: 10px;
    outline: none;
    border: none;
    background: whitesmoke;
    padding: 0px 10px;
    margin: 10px 0px;
}
.loginBtn
{
    width: 250px;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 10px 0px;
    background: black;
    color: white;
    cursor: pointer;
}
form
{
    display: flex;
}
.btn
{
    outline: none;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: black;
    color: white;
    position: fixed;
    bottom: 15px;
    right: 20px;
}
.box
{
    width: 300px;
    height: 300px;
    background: black;
    position: relative;
    overflow: hidden;
}


@media screen and (max-width:600px) {
    .fromcontainer{
        display: flex;
        flex-direction: column;
    }
    
}