/*general setup*/
* {
    cursor: none;
}
body {
    padding: 0;
    margin: 0;
    background-color: #111;
    font-family: Lora;
}
.blob-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  background: #dee2e6;
  z-index: 9999;
  transition: transform 0.04s ease-out, background-color .2s ease-in;
  will-change: transform;
}
#lcc {
    width: 100%;
    display: block;
    pointer-events: none;
    z-index: 0;
    height: 80px; 
    margin-bottom: 40px;
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}


/*header styles*/
header {
    background-color: #111111;
    color: #dee2e6;
    display: flex;
    flex-direction: row;
    padding: 20px 50px;
    align-items: center;
    gap: 50px;
    border-bottom: 2px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header a img#titlemdslogo {
    width: 160px;
    transition: all .08s ease-in-out;
}
header a img#titlemdslogo:hover {
    scale: 115%;
}
header nav {
    display: flex;
    flex-direction: row;
    gap: 50px;
    font-size: 200%;
}
header nav a {
    text-decoration: none;
    color: #dee2e6;
}
header nav a:hover {
    text-decoration: underline;
}


/*footer styling*/
footer {
    bottom: 0;
    font-family: Doto;
    font-size: x-large;
    color: #111;
    background-color: #dee2e6;
    padding: 30px;
    text-align: center;
}
footer div#extras {
    display: flex;
    flex-direction: row;
    text-decoration: underline;
    justify-content: center;
    gap: 30px;
}
footer div#extras a {
    font-family: Lora;
    font-size: small;
    color: black;
}
footer button.stt {
    width: 180px;
    font-family: Doto;
    font-size: 18px;
    background-color: #111;
    color: #dee2e6;
    padding: 15px 30px;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease-in-out;
}
footer button.stt:hover {
    background-color: #dee2e6;
    color: #111;
    border: 2px solid #111;
}




/*fonts*/
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Regular.woff2') format('woff2'),
        url('fonts/Lora-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Doto';
    src: url('fonts/DotoRounded-SemiBold.woff2') format('woff2'),
        url('fonts/DotoRounded-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LoraItalic';
    src: url('fonts/Lora-Italic.woff2') format('woff2'),
        url('fonts/Lora-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}