@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

::selection {
    background-color: rgb(0, 205, 181);
}

label, button {
    user-select: none;
}

body {
    text-align: center;
    font-family: 'Poppins';
}

body * {
    margin: 10px;
}

.break {
    width: 100vw;
}

h1, h2, h3 {
    font-weight: 300;
}

ul {
    width: fit-content;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

input[type="text"] {
    border: 1px solid rgb(170, 128, 255);
    color: rgb(170, 128, 255);
    outline: none;
    padding: 7px;
    transition-duration: .4s;

    font-family: 'Poppins';
}

input[type="text"]:focus {
    background-color: rgb(170, 128, 255);
    color: white;
}

button {
    background-color: rgb(170, 128, 255);
    color: white;
    border: 1px solid transparent;
    font-family: 'Poppins';
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    transition-duration: .4s;
}

button:hover {
    cursor: pointer;
    color: rgb(170, 128, 255);
    border: 1px solid rgb(170, 128, 255);
    background-color: white;
}