@font-face {
    font-family: 'Inter Bold';
    src: url('fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter Medium';
    src: url('fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter Regular';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
}

:root {
    --accent: #a6e3a1;
}

body {
    background-color: #1e1e2e;
    color: #cdd6f4; 
    
}

h1 {
    font-family: 'Inter Bold';
    font-size: 70px;
    
}

h2 {
    font-family: 'Inter Medium';
    font-size: 40px;
}

p {
    font-family: 'Inter Regular';
    font-size: 20px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    flex-direction: column;
    text-align: center;
}