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

body {
    margin: 0;
    background: #0f0f0f;
    color: white;
    font-family: "Poppins";
}

header {
    display: flex;
    align-items: center;
    user-select: none;
}

header * {
    display: inline-block;
}

.logo {
    width: 75px;
}

.action {
    border: none;
    border-radius: 15px;
    padding: 10px;
    font-family: "Poppins";
    padding-left: 20px;
    margin-left: auto;
    margin-right: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 100ms ease,
                transform 100ms ease;
}

button.action {
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    background-image: url("../assets/home.svg");
}

.action:active {
    transform: scale(0.9);
}

.action:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

#greeting {
    padding: 0 14px;
}

.hidden {
    display: none;
}

::selection {
    background: #f0b06b;
    color: black;
}

.warning {
    background-color: rgba(150, 14, 14, 0.1);
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 100px;
    padding: 10px 20px;
    border-radius: 15px;
    outline: 1px solid rgba(150, 14, 14, 0.2);
    color: rgba(200, 200, 200, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}