@font-face {
    font-family: Metro;
    src: url(../resources/metropolis-extra-bold.otf);
}

@font-face {
    font-family: Ubuntu;
    src: url(../resources/Ubuntu-Medium.ttf);
}

@font-face {
    font-family: Roboto;
    src: url(../resources/Roboto.ttf);
}

::selection {
    background: #696969;
    color: #1d1d1d;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Roboto;
    margin: 0;
    background: #1c1c1c;
    color: white;
    display: grid;
    min-height: 100vh;
    justify-items: center;
    align-content: center;
}

.welcome {
    display: grid;
    justify-items: center;
    width: max-content;
}

.logo {
    width: 4em;
    height: 4em;
}

.title {
    color: #4cb05e;
    font-family: Ubuntu;
    font-size: 2em;
}

.search {
    width: 25em;
    height: 3em;
    background-color: #171717;
    border: 1px solid #313131;
    outline: 1px solid #171717;
    border-radius: 37px;
    display: flex;
    align-items: center;
    padding-left: 14px;
    margin-bottom: 30px;
    transition: ease 0.5s;
}

.search:hover {
    background-color: #0c0c0c;
    border: 1px solid #171717;
    outline: 1px solid #0c0c0c;
}

.searchi {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    color: #aaa;
}

.searchic {
    width: 32px;
    height: 22px;
    margin-right: 10px;
}

a.chc {
    width: 23px;
    height: 23px;
    margin-right: 8px;
    padding: 6px;
    transition: ease 0.2s;
    border-radius: 30px;
}

.check {
    width: 23px;
    height: 23px;
}

.chc:hover {
    background: #4cb05e;
    color: #2b6836;
    cursor: pointer;
}

.rectUp {
    color: white;
    border-radius: 10px;
    background-color: #0c0c0c;
    border: 1px solid #171717;
    outline: 1px solid #0c0c0c;
}

.rectDown {
    background-color: #171717;
    border: 1px solid #313131;
    outline: 1px solid #171717;
    border-radius: 37px;
}

.alert {
    text-align: center;
    width: max-content;
    height: max-content;
    max-width: 27em;
    max-height: 9em;
    background: #131313;
    border-radius: 10px;
    position: absolute;
    bottom: 31px;
    border: 1px solid #242424;
    outline: 1px solid #131313;
}

.alertT {
    padding: 16px 33px;
    height: 100%;
    font-weight: normal;
}

.alertx {
    width: 19px;
    height: 19px;
    float: right;
    padding: 2px;
    border-radius: 34px;
    margin: 5px 5px 0 0;
    transition: ease 0.3s;
    outline: none;
    border: none;
}

.alertx:hover {
    color: #733b3b;
    background-color: #ff7070;
    cursor: pointer;
}