@font-face {
    font-family: "Inter Bold";
    src: url(assets/fonts/static/Inter-Bold.ttf);
}

@font-face {
    font-family: "Inter Regular";
    src: url(assets/fonts/static/Inter-Regular.ttf);
}

@font-face {
    font-family: "Inter SemiBold";
    src: url(assets/fonts/static/Inter-SemiBold.ttf);
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 16px;
  }

body {
    display: flex;
    justify-content: center; /* Расположение содержимого по основной оси */
    align-items: center; /* Расположение содержимого по побочной оси */
    background-color: black;
}

* {
    box-sizing: border-box;
}

main {
    display: flex;
    width: 89%;
    background-color: hsl(0, 0%, 12%);
    min-width: 20rem;   
    max-width: 30rem;
    border-radius: 10px;
    margin: 1.5rem;
    padding: 1.5rem;

    justify-content: center; /* Расположение содержимого по основной оси */
    align-items: center;
    flex-direction: column;
}

.wrapper {
    border-radius: 50%;
    overflow: hidden;
    width: 6rem;
    height: 6rem;
}

.wrapper img{
    width: 100%;
    height: 100%;
}

h1{
    font-family: "Inter Bold";
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

h2{
    font-family: "Inter SemiBold";
    color: hsl(75, 94%, 57%);
    font-size: 0.9rem;
}

.quote{
    color: white;
    font-family: "Inter Reguar  ";
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch; /* Stretch 'auto'-sized items to fit the container */
    gap: 1rem;
    text-align: center;
}

.links a{
    background-color: hsl(0, 0%, 20%);
    border-radius: 10px;
    width: 100%;
    text-decoration: none;
    color: white;
    padding: 1rem;
    font-family: "Inter SemiBold";
}