@font-face {
    font-family: 'Inter';
    src: url(./assets/fonts/Inter-VariableFont_slnt\,wght.ttf)  format('truetype');
}

html, body {
    font-family: 'Inter';
    font-size: clamp(14px, 2.5vw, 18px);
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #141414;
    height: 100%;
}

.content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 15px;
}

.content-box img {
    width: 100px;
    border-radius: 50%;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    color: white;
    margin-top: 30px;
    font-size: 28px;
}

h2 {
    color: #c4f82a;
    margin-top: 8px;
    font-size: 14px;
}

p {
    color: #ababab;
    margin-top: 25px;
    font-size: 12px;
}

.socials {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.socials button {
    height: 50px;
    width: 300px;
    background-color: #333333;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    transition: 0.5s;
    font-weight: 600;
}

button:hover {
    background-color: #c4f82a;
    color: black;
    cursor: pointer;
}