@font-face {
    font-family: "Bagel";
    src: url("fonts/BagelFatOne-Regular.ttf");
}

:root {
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Bagel;
    user-select: none;
}

body {
    background-image: 
    radial-gradient(
    hsla(70, 60%, 100%, 1),
    hsla(70, 55%, 85%, 1));
    height: 100vh;
    touch-action: none;
}

header {
    position: fixed;
    color: hsla(70, 70%, 10%, 1);
    top: 0;
    text-align: center;
    width: 100%;
}

footer {
    position: fixed;
    color: hsla(70, 70%, 10%, 1);
    bottom: 0;
    text-align: center;
    width: 100%;
}

footer ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    list-style: none;
}

footer li {
    font-size: 20px;
    padding: 10px;
}

.name {
    font-size: 45px;
}

.menubtn {
    display: none;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    background: hsla(70, 70%, 95%, 0.8);
    padding: 15px;
    border-radius: 50% 0 0 50%;
    z-index: 9999;
}

.menubtn div {
    height: 15px;
    width: 15px;
    background: hsla(70, 70%, 10%, 1);
    margin: 2px;
    border-radius: 40%;
}

.seeker {
    position: fixed;
    display: block;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 0;
    height: 54px;
    width: 10px;
    transform: translateY(-50%);
    border: 1.5px solid hsla(70, 70%, 10%, 0.15);
    background: hsla(70, 70%, 95%, 0.8);
    border-radius: 50px;
    margin: 5px;
    z-index: 9999;
}

.scrollpad {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateX(-10px) translateY(-50%);
    right: 0;
    padding: 10px;
    border-radius: 25px;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.scrollers {
    background: hsla(70, 70%, 10%, 1);
    border-radius: 30px 15px 15px 30px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 15px;
    
}

.scrollers a {
    text-decoration: none;
    color: hsla(70, 70%, 95%, 1);
    -webkit-tap-highlight-color: transparent;
}

.scrollers:active {
    transform: scale(1.3);
    margin: 10px;
    background: hsla(70, 70%, 12%, 1);
    color: hsla(70, 70%, 90%, 1);
}

section {
    height: 100dvh;
}

#home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: hsla(70, 70%, 10%, 1);
    font-size: 1.75em;
    line-height: 1.5;
    letter-spacing: 2px;
}

#home p {
    width: 100%;
    text-align: center;
    padding: 10px 30px;
}

#home p:nth-child(1) {
    text-align: left;
}

#about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: hsla(70, 70%, 10%, 1);
    font-size: 1.45rem;
    line-height: 1.5;
    letter-spacing: 2px;
}

#about li {
    margin: 20px;
}

#about a {
    -webkit-text-stroke: hsla(70, 70%, 10%, 1);
    color: transparent;
    -webkit-text-stroke-width: 2px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

#skills {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: hsla(70, 70%, 10%, 1);
    font-size: 1.45em;
    line-height: 1.5;
    letter-spacing: 2px;
}

#skills li {
    margin: 20px;
}

footer a {
    color: hsla(70, 70%, 10%, 1);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}