* {
    background: none;
    color: inherit;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: Inter, sans-serif;
    font-size: inherit;
    font-weight: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

html {
    overflow-y: auto;
}

body {
    overflow: visible;
}

div {
    display: flex;
}

h1 {
    font-weight: 700;
}

p {
    white-space: wrap;
    line-height: 1.4;
}

img {
    width: 4rem;
    height: 4rem;
    filter: grayscale(1);
    flex-shrink: 0;
}

button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    &:hover {
        filter: brightness(1.25);
        cursor: pointer;
    }
}

svg {
    height: 1.2rem;
    width: auto;
    fill: inherit;
    flex-shrink: 0;
}

hr {
    width: 100%;
    height: 0.1rem;
}