* {
    margin: 0;
    padding: 0;
}

body,
html {
    background-color: #ffffff;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    object-fit: cover;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.view {
    height: calc(100vh - 65px);
    margin-top: 65px;
    width: 100%;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media screen and (orientation: portrait) {
    .view {
        height: calc(100vh - 40px);
        margin-top: 40px;
    }
}