@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    color: hsl(0, 0%, 100%);
    font-family: "inter";
}

body{
    background-color: hsl(0, 0%, 8%);
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column; 
}

img{
    width: 80px;
    border-radius: 100px;
}

a{
    text-decoration: none;
}

#background-box{
    background-color: hsl(0, 0%, 12%);
    width: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mb-05{
    margin-bottom: 5px;
}

.mb-2{
    margin-bottom: 20px;
}

.attribution{ 
    font-size: 11px; text-align: center; 
}

.attribution a {
    color: hsl(75, 94%, 57%); 
}

.text-green{
    color:hsl(75, 94%, 57%);
}

.btn{
    background-color: hsl(0, 0%, 20%);
    text-align: center;
    width: 220px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.6s;
}

.btn:hover{
    background-color: hsl(0, 0%, 31%);
    font-size: 20px;
}

.flex{
    display: flex;
    flex-direction: column;
    margin-left: 9%;
}