
    
 
body{
    background-color: hsl(0, 0%, 8%);
    font-family: Arial, sans-serif;
    font-size: 14px;
} 
.container{
    
    display: flex;
    flex-direction: column;
    width: 550px;
    height: 120vh;
    background-color:hsl(0, 0%, 12%);
    margin-top: 100px; 
    margin-right:auto; 
    margin-left:auto;
    margin-bottom: 100px;
    text-align: center;
    border-radius: 30px;

}
.headshot{
    background-image: url('./assets/images/avatar-jessica.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-top: 50px;
    margin-bottom: 25px;
}

h1{
    color: white;
    font-size: 35px;
    font-weight: 400;
    margin-top: 20px;
}
h2{
    color:hsl(75, 94%, 57%);
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    padding-bottom: 25px;
}
h3{
    color: hsl(0, 1%, 66%);
    font-size: 20px;
    font-weight: 400;
    font-stretch: ultra-expanded;
    margin-top: 20px;
}
.button-div {
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 6%, 79%);
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    padding: 20px;
    margin-left: 80px;
    margin-right: 80px;
    margin-bottom: 5px;
    border-radius: 10px;
}
.button-div:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 100%);
}

.attribution { 
    font-size: 11px; 
    text-align: center;
    color:hsl(0, 0%, 100%); 
}
.attribution a { 
    color: hsl(228, 69%, 74%); 
}


@media (max-width: 375px) {
    body {
        background-color: hsl(0, 0%, 8%);
        font-size: 14px;
    }

    .container {
        width: 90%;
        max-width: 350px;
        height: auto;
        min-height: 100vh;
        background-color: hsl(0, 0%, 12%);
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        margin: 80px auto;
        text-align: center;
    }

    .headshot {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-top: 20px;
    }

    h1 {
        font-size: 22px;
        font-weight: 700;
        color: white;
        margin-top: 15px;
    }

    h2 {
        font-size: 14px;
        font-weight: 600;
        color: hsl(75, 94%, 57%);
        margin-top: 5px;
    }

    h3 {
        font-size: 14px;
        font-weight: 400;
        color: hsl(0, 1%, 66%);
        margin-top: 10px;
    }

    .button-div {
        width: 85%;
        background-color: hsl(0, 0%, 20%);
        color: hsl(0, 6%, 79%);
        font-size: 14px;
        font-weight: 700;
        padding: 12px;
        border-radius: 10px;
        margin: 10px auto;
        text-align: center;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
    }

    .button-div:hover {
        background-color: hsl(75, 94%, 57%);
        color: hsl(0, 0%, 100%);
    }

    .attribution {
        font-size: 10px;
        text-align: center;
        color: hsl(0, 0%, 100%);
        margin-top: 20px;
    }

    .attribution a {
        text-align: center;
        color: hsl(228, 69%, 74%);
    }
}