@font-face {
    font-family: 'Inter';
    src: url('/font/interfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
}

body {
    background-color: black;
    display: grid;
    justify-content: center;
    align-content:center;
    height: 100vh;
    width: 100vw;
    font-family: 'Inter', sans-serif;
    color: white;
}

h1 {
    font-weight: 700;
    font-size: 2rem;
}

h2 {
    font-weight: 600;
    font-size: 1rem;
    color: hsl(75, 94%, 57%);
}

p {
    font-weight: 400;;
}

.box {
    background-color: hsl(0, 0%, 12%);
    width: 400px;
    height: 500px;
    display: grid;
    justify-items: center;
    align-items: center;
    border-radius: 10px;
    gap: 10px;
    padding-block: 10px;
}

img {
    border-radius: 50%;
    width: 100px;
    border: 1px hsl(75, 94%, 57%) solid;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    list-style: none;
    margin: 10px 0;
    background-color: hsl(0, 0%, 20%);
    text-align: center;
    padding: 10px 5px;
    border-radius: 15px;
    width: 200px;
}

li:hover {
    background-color: hsl(75, 94%, 57%);
    transition: background-color 0.5s ease;
    
}

li:hover a {
    color: black;
}

li a {
    text-decoration: none;
    display: block;
    color: white;
    /* padding: 10px 5px; */
    height: 100%;
    width: 100%;
    cursor: pointer;
}

