@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

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

.container {
    border-radius: 10px;
    background-color: hsl(0, 0%, 12%);
    padding: 30px;
    margin: auto;
    align-items: center;
    flex-direction: column;
    display: flex;
    max-width: 100%;
}
.place{color: hsl(75, 94%, 57%);
       font-weight: 400;
       padding-top: 3px;
       margin: 0;
}
.header{color: white;
        font-weight: 700;
        text-decoration: none;
        padding-top: 20px;
        margin: 0;
}
.description{color: rgb(233, 224, 224);
            padding-top: 20px;
            padding-bottom: 10px;
            }
.about {text-align: center;
        flex-direction: column;
        display: flex;
        margin: 0;
}
.social-link{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0;
    padding: 0;
    gap: 10px;
}
button {background-color: hsl(0, 0%, 20%);
        border-radius: 10px;
        padding:15px 90px;
        width: 100%;
        border: none;
        cursor: pointer;
        outline: none;
        font-weight:600;
}

a {
    text-decoration: none;
    outline: none;
    color: white;
}
img{
    object-fit: contain;
    border-radius: 100%;
    margin: 0;
    width: 60%;
}
.img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}
