:root {
    --primary-dark: #00796B;
    --primary: #009688;
    --primary-light: #B2DFDB;
    --accent-color: #8BC34A;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    height: 100%;
}

body{
    height: 100%;
}

header{
    text-align: center;
}

main{
    background-image: linear-gradient(to left bottom, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    /*background-image: linear-gradient(0deg,#051937, #004d7a);*/
    background-attachment: fixed;
    min-height: 100vh;
}
.ad-description{
    text-decoration: none;
    color: black;
}

.content{
    display: grid;
    width: 70%;
}

.item-card{
    display: inline-flex;
    overflow: hidden;
    width: 30%;
}

.item-card figure{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.login{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.text-token{
    height: 5em;
}

.login-button{
    margin: 0.5rem auto;
    text-align: center;
    width: 50%;

}

.login, .content{
    display:inline-block;
    vertical-align: top;
}

.login-element{
    text-align: center;
    margin: 0.3rem;
}

.options{
    text-align: center;
}

.options button{
    border-radius: 5px;
    font-weight: 500;
    width: 120px;
}

.search-text{
    border-radius: 5px;
    font-size: 1.2em;
    display: block;
    margin: 1rem auto;
    text-align: center;
    width: 50%;
}

.slogan{
    color: white;
}

.title{
    margin-top:0 !important;
    color: white;
}

