html {
    font-size: 14px;
    font-family: "Inter" sans-serif;
}

body {
    background-color: #141414;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h2, h4, p {
    margin: 0;
}

/* main container start*/
#main-container {
    background-color: #1f1f1f;
    border-radius: 8px;
    padding: 20px;
    margin: 100px 10px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
/* main container end */

/* top section start*/
#top-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#top-section img {
    border-radius: 50%;
    width: 80px;
    margin-bottom: 20px;
}

#top-section h2 {
    color: #ffffff;
    font-family: inter;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

#top-section h4 {
    color: #c5f82a;
    font-family: inter;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 20px;
}

#top-section p {
    color: #ffffff;
    font-family: inter;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
/* top section end */

/* buttons section start */
#buttons-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#buttons-section button {
    border: none;
    border-radius: 5px;
    padding: 15px;
    background-color: #333333;
    color: #ffffff;
    font-family: inter;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.03 ease, transform 0.3s ease;
}

#buttons-section button:hover {
    background-color: #c5f82a;
    color: #141414;
    transform: scale(1.008);
    
}

#buttons-section #b-margin {
    margin-bottom: 15px;
} 
/* button section end */

/* Media query for desketop (1440px) */
@media (min-width: 380px) {
    #main-container {
        width: 300px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-40%, -50%);
    }
}
