* {
    margin: 0;
}

.inter-regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.inter-semibold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}


.inter-bold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
}

main {
    background-color: hsl(0, 0%, 12%);
    min-width: 30%;
    height: 600px;
    margin-top: 150px;


}

main ul li {
    margin-top: 20px;
    width: 85%;
    height: 35px;
    background-color: hsl(0, 0%, 20%);
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;

}

img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-top: 25px;
    display: block;
    margin: 25px auto 0 auto;

}

h1 {
    color: hsl(0, 0%, 100%);
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
}

h2 {
    color: hsl(75, 94%, 57%);
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}

h3 {
    color: hsl(0, 0%, 100%);
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
}

a {
    color: hsl(0, 0%, 100%);
    text-align: center;
    font-size: 18px;
    text-decoration: none;
}

ul {
    margin-top: 45px;
    
    margin-left: 15px;

}

li:hover {
    color: black;
    background-color: hsl(75, 94%, 57%);


}

a:hover {
    color: black;
    
}