* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Open Sans;
    src: url(./assets/fonts/OpenSansHebrewCondensed-Regular.ttf);
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    padding: 100px;
    width: 35%;
    height: auto;
}

input {
    border: none;
    outline: none;
    text-align: center;
    font-size: 25px;
}

label {
    padding: 15px 5% 15px 5%;
    border: 2px solid black;
    border-radius: 40px;
    position: relative;
    cursor: pointer;
}

form {
    width: 100%;
    text-align: center;
    height: auto;
}

.submit {
    right: 2%;
    top: 20%;
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: cover;
    background-image: url(./assets/icon_search.png);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0);
    border: none;
}

.tag {
    border: 2px solid black;
    display: inline-block;
    padding: 7px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 25px;
    transition: all 0.2s;
}

.tag:hover {
    background-color: #666666ff;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0);
}

.cont-cont-tag {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.cont-tag {
    font-family: Open Sans;
    text-align: center;
    width: 50%;
    margin: 100px;
}

#local {
    display: none;
}