:root {
    --main-font-family: 'garet', sans-serif;
    --main-bg-color: #131313;
}

@font-face {
    font-family: garet;
    src: url('./assets/fonts/Garet-Book.otf');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}


.main-body {
    background-color: #131313;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
}

#header {
    margin-top: 5vh;
    text-align: center;
}

#logo-container {
    text-align: center;
}

#logo-container .logo {
    width: 70vw;
    max-width: 300px;
    margin-top: 2vh;
}

#footer {
    margin-top: auto;
    margin-bottom: 3vh;
}

#footer #website {
    text-align: center;
    font-size: 3.5vw;
    color: #ffffff60;
    font-family: var(--main-font-family);
}

.gradient-title {
    font-family: 'garet', sans-serif;
    font-size: 2.5vw;
    font-weight: 400;
    display: inline-block;
    background: linear-gradient(
        180deg,
        #8B7148AA 0%,
        #8B7148AA 38%,
        #A88957AA 49%,
        #A88957AA 51%,
        #8B7148AA 62%,
        #8B7148AA 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}