@font-face {
    font-family: francois;
    src: url(../fonts/FRANCOISONE-REGULAR.TTF);
}

@font-face {
    font-family: Gilgan;
    src: url(../fonts/GILGAN.OTF);
}

*, 
*:before, 
*:after{
    box-sizing: border-box;
}
html{
    /* font-size: 16px; */
    height: 100%;
}
body{
    margin: 0;
    padding:0;
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.masterContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}

h1{
    font-family: francois;
    font-size: 8rem;
    color: white;
    /* text-shadow: 4px 4px 10px black; */
    padding-right: 2rem;
}

nav{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 2rem 0 2rem 2rem;
    /* padding-left: 2rem; */
    border-left: 5px #9AA0BD solid;
}

a{
    font-family: Gilgan;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: #5C6073;
    border-radius: 0px 30px 30px 0px;
    margin: 10px 0;
}

a:hover{
    color: white;
    background-color: #9AA0BD;
    transform: scale(1.1);
    transform-origin: left;
    transition: 0.2s;
}