*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    color: white;
    font-family: "inter", Arial, Helvetica, sans-serif;
}
.main{
    background-color: hsl(0, 0%, 12%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 15px;
}

.image img{
    width: 70px;
    height: auto;
    border-radius: 50px;
    /* margin-top: 10px; */
    margin-bottom: 20px;    
}
h1{
    font-size: 20px;
    padding-bottom: 5px;
}
span{
    font-size: 15px;
    color: hsl(75, 94%, 57%);
    /* padding-bottom: 20px; */
}

.title{
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 20px;
}
.socials{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 1rem; */
    width: 100%;
    
}
a{
    text-decoration: none;
    color: white;
}
a:hover{
    cursor: pointer;
    background-color: hsl(75, 94%, 57%);
    color: rgb(0, 0, 0);
}


.button{
    background-color: hsl(0, 0%, 20%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
}