@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter Italic';
    src: url('../Fonts/Inter-Italic.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    background-color: #000000;
    color: #ffffff;
}

.name {
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: 'Inter Italic', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 8rem);
    text-align: center;
    color: #ffffff;
}

.name h1 {
    margin: 0;
    line-height: 1;
}

.bottom-bar {
    width: 100%;
    min-height: 10vh;
    background-color: #ffffff;
}

.link-bar {
    display: flex;
    justify-content: center;
    align-items: center;    
    padding-top: 1vh;
    height: 3vh;
}

.link-bar a {
    text-decoration: none;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 250;
    font-size: 1.5vh;
    margin: 0 0.5rem;
}

.contact-info {
    text-align: center;
    padding-bottom: 1vh;
    padding-top: 1vh;
    height: 3vh;
}

.contact-info a {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 252500;
    font-size: 1.5vh;
    color: black;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-bottom: 1vh;
    height: 3vh;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.25vh;
    color: black;
}