@font-face{
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

.card{
    width: 24rem;
    height: 665px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.profile-image{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 25px;
}

h1{
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

.direction{
    font-weight: 400;
    color: hsl(75, 94%, 57%);
    margin-top: -10px;
    font-weight: 600;
}

p{
    font-weight: 400;
    color: hsl(0, 0%, 100%);
    margin-bottom: 25px;
}

.btn{
    background-color: hsl(0, 0%, 20%);
    border: none;
    margin-bottom: 20px;
    width: 80%;
    height: 50px;
    border-radius: 5px;
    font-size: 17px;
    color: hsl(0, 0%, 100%);
    font-weight: 600;
}

.btn:hover{
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    cursor: pointer;
}

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

@media (min-width: 1100px) {
    body {
        gap: 0;
    }

    .card {
        width: 27rem;
        height: 625px;
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 0;
    }

    .btn{
        height: 45px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .attribution{
        margin-bottom: 5px;
    }
}