html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #000;
    text-decoration: none;
}
.home {
    font-size: large;
    color: black;
    text-decoration: none;
    transition: transform .2s;
    margin: 5px;
}
.home:hover {
    transform: scale(1.1);
    text-decoration: underline;
}
#frame {
    height: 750px;
    margin-top: 10px;
}
.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
