@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');
body{
    background-color: hsl(0, 0%, 8%);
    width: 100vw;
    height: 100vh;
}
.card{
    background-color: hsl(0, 0%, 12%);
    margin: auto;
    margin-top: 175px;
    width:385px;
    height:600px;
    border-radius:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family:'Inter',sans-serif;
    font-size: 14px;
    font-weight: 400;
}
img{
    margin:35px;
    width:85px;
    height:85px;
    border-radius: 50%;
}
h2,.sub{
    font-weight: 600;
    margin:5px;
}
h2{
    font-size: 24px;
}
.sub{
    color:hsl(75, 94%, 57%);
}
.text{
    margin:20px;
}
.platform{
    margin:8px;
    width:300px;
    height:42.5px;
    font-weight: 600;
    background-color: hsl(0, 0%, 20%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.platform:hover{
    background-color:hsl(75, 94%, 57%);
    color:black;
    cursor:pointer;
}
@media (max-width:425px){
.card{
    margin-top:100px;
    width:325px;
    height:550px;
}
img{
    margin:20px;
}
h2{
    font-size: 22px;
}
.platform{
    width:280px;
}
}