@font-face {
    font-family: 'Inter';
    src: url('/static/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/static/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/static/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

img {
    height: 128px;
    width: 128px;
    border-radius: 100%;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #cdfd20;
    font-size: medium;
}

main{
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background: #000000;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 400;

}

button {
    background-color: #3b3b3b;
    border-radius: 10px;
    height: 40px;
    width: 256px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    padding: 0;
    border: none;
}

button:hover {
    background-color: #cdfd20;
    border-radius: 10px;
    height: 40px;
    width: 256px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #000000;
    padding: 0;
    border: none;
}

.card {
 display: flex;
 flex-direction: column;
 align-items: center;
 width: 320px;
 background-color: #202020;
 gap: 20px;
 padding: 10px;
 border-radius: 20px;
}

.top-card {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 20px
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-card {
    display: flex;
    flex-direction: column;
    gap: 10px
}