﻿* {
    -webkit-user-select: none;                /*תומך בדפדפני WebKit (כמו Chrome, Safari)*/
    -ms-user-select: none;                    /*תומך ב־Internet Explorer*/
    -webkit-touch-callout: none;              /* מונע תפריט ארוך-לחיצה באייפון */
    -moz-user-select: none;                   /* Firefox */
    user-select: none;                        /* מונע סימון טקסט בלחיצה */
    -webkit-tap-highlight-color: transparent; /* מסיר את האפקט של "הבהוב" */
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html, body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: #E0FFFF ;
    cursor: default;
    user-select: none;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.luh {
    border: 0px solid black;
    display: block;
    align-items: center;
    cursor: default;
    box-sizing: content-box;
    overflow: hidden;
}


.ttl {
    position: absolute;
    font-family: David bold;
    text-align: center;
    font-weight: bolder;
    cursor: default;
    transform: translateX(-50%);
    width: 100%;
}

#ttl1 {
    color: deepskyblue;
}

#ttl2 {
    color: brown;
}

#lnks {
    user-select: none;
    font-weight: bolder;
    font-family: David;
    position: absolute;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateX(-50%);
    left: 50%;
}

.lnk {
    display: block;
    color: blue;
    cursor: pointer;
    padding: 0.5%;
    text-decoration: underline;
}

.inf {
    display: block;
    cursor: default;
    text-decoration: none;
    margin: 1%;
}
