@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    margin: 0%;
    padding: 0%;
}

body, html {
    height: 100%;
}

body {
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    border-radius: 20px;
    background-color: hsl(0, 0%, 12%);
    padding: 40px;
    width: 20%;
}

.photo {
    color: hsl(0, 0%, 100%);
    border-radius: 50%;
    height: 150px;
    padding-bottom: 10px;
}

.name {
    color: hsl(0, 0%, 100%);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    opacity: 0.9;
}

.location {
    color: hsl(75, 94%, 57%);
    letter-spacing: 1px;
    padding-bottom: 25px;
    opacity: 0.9;
}

.description {
    color: hsl(0, 0%, 100%);
    padding-bottom: 10px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.buttons {
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}

.buttons:hover {
    background-color: hsl(75, 94%, 57%);
    color: black;
    transition: all 0.5s;
    cursor: pointer;
}

@media screen and (max-width: 400px) {
    .container {
        width: 70%;
    }
}