@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Inter", sans-serif;
    background-color: #000;
    color: #fff;
}

/* Main Section */

.main-section{
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: 1;
    display: flex;

}

/* Container */

.container{
    background-color: hsl(0, 0%, 8%);
    width: 100%;
    max-width: 350px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;

}

/* Inner Content */

.inner-content{
    padding: 40px;
}

.basic-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.basic-details img{
    width: 60px;
    border-radius: 100%;
    margin-bottom: 20px;
}

.basic-details h2{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.basic-details h4{
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: hsl(75, 94%, 57%);
    margin-bottom: 20px;
}

.basic-details p{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Buttons */

.socialbtn{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.socialbtn a{
    text-decoration: none;
    background-color: #333333;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    line-height: 1.5;
}

.socialbtn a:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    transition: background-color 0.3s ease-in-out;
}

/* Media Query */

@media (max-width: 768px){
    .container{
        margin: 0 24px;
    }
}