@font-face {
    font-family: 'SomeTimes';
    src: url('SomeTimes-SansSerif.woff') format('woff'),
         url('SomeTimes-SansSerif.otf') format('opentype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'SomeTimes', Arial, sans-serif;
    letter-spacing: 0.2px;
    line-height: 1.0;
    color: #a1a1a1;
    background: rgb(255, 255, 255);
    position: relative;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    max-width: 1000px;
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.intro {
    margin-bottom: 10px;
}

.intro p {
    line-height: 1.3;
    font-size: 1.2em;
    font-weight: normal;
}

.bio p {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.hiddenbio p{
    font-size: 0.9em;
    line-height: 1.5;
    color: rgb(253, 108, 181);
}

.hiddenbio:hover {
  display: block;
}

a {
  color: #a1a1a1;
  text-decoration: none;
  stroke: none;
}

a:hover {
  color: rgb(253, 108, 181);
}

a:active {
  color: rgb(253, 108, 181);
}

.hiddenbio {
    display: none;
}

.name {
    cursor: pointer;
}

.name:hover {
    color: rgb(253, 108, 181);
}

footer {
    padding-top: 20px;
    margin-top: auto;
    color: #a1a1a1;
    font-size: 0.9em;
    line-height: 1.5;
}


@media (max-width: 600px) {
    body {
        padding: 20px;
    }
}