:root {
    --red: #DC2828;
    --white: #f5f5f5;
    --black-1: #1A1A1B;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: "Inter", sans-serif;
    color: var(--white);
    text-align: center;
    background-color: var(--black-1);
    background: radial-gradient(circle at bottom, #5C1F1FFF, var(--black-1) 50%);
}

.container {
    width: 80vw;
}

h1 {
    font-size: 50px;
    margin: 0;
}

span {
    color: var(--red);
}

p {
    opacity: .5;
    font-size: 1.1em;
}

input[type=text] {
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
    font-size: 1.1em;
    background-color: #201f1f;
    color: var(--white);
}

input[type=text]:focus {
    outline: none;
}

button {
    background-color: var(--red);
    color: var(--white); 
}


form {
    width: 100%;
    position: relative;
}

form input {
    width: 70%
}

form button {
    display: flex;
    align-items: center;
    gap: 5px;

    position: absolute;
    /* height: 80%; */
    padding: 12px 25px;
    border-radius: 0.75rem;
    top: 28px; /* 20 + gap */
    /* right: calc(12.5% + 10px); */
    right: 11.3vw;
    font-size: 1em;
    border: none;
    transition: background-color 100ms ease-in;
}

button:hover {
    background-color: #df3a3a;
}

ul {
    display: flex;
    gap: 30px;
    list-style-type: disc;
    justify-content: center;
    font-size: 0.8em;
}


ul li::marker {
    color: var(--red);
}