html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
}

#background {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(-17deg, var(--colorMain2) 10%, var(--colorAccent));
    position: fixed;
    z-index: -100;
}

.scroller {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

#frontScreen {
}

#nextScreen {
    color: var(--colorLightShade);
}
#nextScreen2 {
    color: var(--colorLightShade);
}

#centeredCon {
    display: flex;
    position: relative;
}

#profilePic {
    width: 20vw;
    height: 20vw;
    background-image: url('/assets/index/images/cyborg\ duck3.png');
    background-position: center;
    background-size: cover;
    transition: background-image ease-in 0.2s;
    border: 0.15vw solid var(--colorLightShade);
    border-radius: 50%;
}

/*
#profilePic::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,rgba(0,0,0,0) 50%,rgba(0,0,0,1) 100%);
    border-radius: 50%;
}*/

#hoverMeHandWritten {
    width: 10vw;
    position: absolute;
    left: 17vw;
    top: -3vw;
    pointer-events: none;
}

#profileName {
    /*background-color: azure;*/
    width: fit-content;
    height: 20vw;
    margin-left: 5vw;
}

#profileName > span {
    /*background-color: aquamarine;*/
    height: 13vw;
    line-height: 13vw;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    color: var(--colorLightShade);
    font-size: 10vw;
    font-weight: 600;
    font-style: normal;
}

#dictionaryEntry {
    /*background-color: aqua;*/
    font-size: 1vw;
    height: 7vw;
    color: var(--colorLightShade);
}

#dictionaryEntry > span {
    font-size: 1.5vw;
    font-weight: 500;
}

#dictionaryEntry > span > span {
    font-size: 1vw;
}

#dictionaryEntry > div#definition {
    font-size: 0.8vw;
    font-variant: small-caps;
}

#dictionaryEntry > div#definition > span {
    font-size: 0.6vw;
}

#dictionaryEntry > div#definition > span.spacer {
    padding-left: 2vw;
}


#contactCon {
    position: fixed;
    height: 100%;
    right: 0;
    display: flex;
    transform: translateX(100px);
    transition: ease-in-out 0.3s;
    pointer-events: none;
}

#contactCon:hover { /*gets triggert by pointer event of hovercon*/
    transform: translateX(0);
    transition: ease-in-out 0.3s;
}

#contactText {
    width: 55px;
    height: 100%;
    color: var(--colorLightShade);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#contactText div {
    transform: rotate(-90deg);
    text-wrap: nowrap;
    margin-bottom: 15px;
    font-size: 50px;
    transition: linear 0.1s;
}

#contactCon:hover #contactText div {
    color: var(--colorAccent);
    transition: linear 0.1s;
}

#contactText div span {
    font-size: 35px;
}

#contactIcons {
    width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#contactIcons a {
    color: var(--colorLightShade);
    display: block;
    margin-bottom: 15px;
    transition: linear 0.1s;
    pointer-events: auto;
}

#contactIcons a:hover {
    color: var(--colorAccent);
    transition: linear 0.1s;
}

#hoverCon {
    width: 155px;
    height: 385px;
    bottom: 0;
    position: absolute;
    pointer-events: auto;
    z-index: -1;
}

#contactCon:hover #hoverCon {
    height: 500px;
}