@import url(Roboto_Mono/static/RobotoMono-Light.ttf);

:root {
    --nav-height: 5vh;
    --wblue: #1463f3;
    --wblack: #1d2023;
    --wwhite: #CCD0d8;
}

/*Basic Settings*/
body,
html {
    overflow: scroll;
    width: 100vw;
   height: 100vh;
}

* {


    font-family: 'Roboto Mono', monospace;
    color: var(--wblack);
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--wwhite);


}




#nav {
    width: 100vw;
    position: fixed;
    background: var(--wwhite);
    height: 5vh;
    display: flex;
}

#nav>* {
    text-align: center;
    font-size: 2vh;
    color: var(--wblack);
}

.cv-name {
    height: fit-content;
    margin: auto auto;

}

.buttons {
    justify-content: space-around;
    display: flex;
    margin-left: 60vw;
    margin-top: auto;
    margin-bottom: auto;
    width: 30vw;
    height: fit-content;
}

.page {



    width: 100vw;
    height: max-content;
}

h1 {
    color: var(--wblue);
}

.hf {

    font-size: 10vh;
}

.hi1 {
    animation: 2s changeColor infinite linear;
    animation-iteration-count: 1;
   
    
    
    font-size: 10vh;
    color: green;
}

@keyframes changeColor {
    to {
        margin-left: 10vw ;
        color: red;
    }
}

#animate {
    background-color: #1463f3;
    font-size: 10vh;
    width: fit-content;
}