* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
}

html, body {
    background-color: #1B1924;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

main.wrapper {
    max-width: 317px;
    margin: 51px auto;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

div.img-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 17px;
}

img.logo {
    width: 90px;
    height: 90px;
}

h1 {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 17px;
}

#endorsement-input {
    border: none;
    background: none;
    box-shadow: none;
    outline: none;
    resize: none;
    background-color: #444059;
    max-width: 100%;
    height: 118px;
    border-radius: 8px;
    padding: 12px 19px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    margin-bottom: 13px;
    color: #FFFFFF;
}

button#publish-btn {
    border: none;
    font-family: inherit;
    color: #04131C;
    font-weight: bold;
    font-size: 22px;
    height: 61px;
    border-radius: 8px;
    cursor: pointer;
    background-color:#28A9F1;
    margin-bottom: 24px;
}

h2 {
    color: #FFFFFF;
    margin-bottom: 19px;
}

ul#endorsements-list {
    list-style: none;
    text-align: left;
    display: grid;
    gap: 13px;
}

li.endorsement-el {
    color: #1B1924;
    background: #FFFFFF;
    padding: 13px 15px;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    border-radius: 8px;
}

.no-endorsement-placeholder{
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    text-align: center;
}

