@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "slnt" 0;
}

body {
    margin: 0;
    padding: 0;
    background: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
}

.main {
    display: flex;
    flex-direction: column;
    background: #1f1f1f;
    border-radius: 13px;
    width: 375px;
    /* height: 900px; */
    
}

.head {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* background: gold; */
}

.head img {
    margin: 30px;
    border-radius: 50%;
    width: 110px;
}

.head h2 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
}


.head h4 {
    margin-top: 5px ;
    font-weight: 700;
    color: #c5f82a;
}

.head p {
    margin-top: 10px ;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 14px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 300px;
    margin: 0 25px 25px;
    gap: 10px;
    flex-wrap: wrap;
    /* background: red; */
}

.links a {
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    background-color: #333333;
    width: 100%;
    border-radius: 8px;
    padding: 15px 0;
    transition: .5s;
}

.links a:hover {
    cursor: pointer;
    background-color: #c5f82a;
    color: #333333;
}
