*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing_page{
    width: 100%;
    min-height: 100vh;
    background: url(../../../images/landingpage/landing_page.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
}

.landing_page .logo img{
    width: 200px;
}

.landing_login{
    padding: 10px 20px;
    border-radius: 15px;
    background: orange;
    color: white;
}