/*--- resets browser defaults ---*/

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

/*--- code starts here ---*/

html {
    height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
}

body {
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    
/*    use when there is gif*/
    background-image: url('../assets/twinkle.gif');
    background-size: cover;
    background-position: center;
    
}   

.mainText {
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.name {
    font-family: 'freight-big-pro', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-transform: uppercase;
    color: #d6a5a4;
}

.textBox {
    width: 300px;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    font-family: 'freight-big-pro', serif;
    font-weight: 400;
    font-style: italic;
    color: #d6a5a4;
    letter-spacing: 0.03em;
    position: relative;
}

a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

a:hover:before {
    visibility: visible;
    width: 100%;
    transition: 0.3s ease;
    padding-bottom: 0px;
    border-bottom: 1px solid;
}

.footer {
    font-size: 10px;
    letter-spacing: 0.2em;
}
