*{
    margin: 0;
}
body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(0, 0%, 8%) ;
    font-family: "Inter", sans-serif;
    color: hsl(0, 0%, 100%);
}

main{
    display: flex;
    flex-direction: column;
    width: 280px;
    align-items: center;
    padding: 25px;
    background-color:  hsl(0, 0%, 12%);
    border-radius: 10px;
    margin-bottom: 40px;
    p{
        font-size: 14px;
    }
}

.profile{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    margin-bottom: 25px;
    img{
        border-radius: 50%;
        width: 90px;
        margin-bottom: 25px;
    }
    h1{
        font-weight: 500;
    }
    p{
        color:  hsl(75, 94%, 57%);
        font-size: 14px;
        font-weight: 600;
        margin-top: 10px;
    }
}

.socialLinks{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 270px;
    margin-top: 25px;

    a{
        color: hsl(0, 0%, 100%);
        text-align: center;
        text-decoration: none;
        width: 250px;
        padding: 15px;
        background-color: hsl(0, 0%, 20%);
        border-radius: 5px;
        font-size: 14px;
        font-weight: 700;
    }
    a:hover{
        background-color:  hsl(75, 94%, 57%);
        cursor: pointer;
        color: hsl(0, 0%, 20%);
    }
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
}
.attribution a { 
    color: hsl(228, 45%, 44%); 
}

@media (min-width: 376px) and (max-width: 425px){
    
    main{
        width: 290px;
    }
}

@media (min-width: 426px){

    main{
        width: 305px;
        padding: 40px;
    }

    .socialLinks{
        width: 270px;

        a{
            width: 280px;            
        }
    }

    .attribution { 
        font-size: 11px; 
        text-align: center; 
    }
    .attribution a { 
        color: hsl(228, 45%, 44%); 
    }
}