@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Forum&family=Inter:wght@400;700&family=Ubuntu:wght@400;500;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    height: 100%;
    font-family: 'Comfortaa', cursive;
    background-color: rgb(43, 43, 43);
    color: #ffffff;
}
header {
    border-bottom: 5px solid orange;
}
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column
}
.container {
    margin-top: 20px;
    margin-bottom: 20px;
    flex: 1 1 auto;
    width: 95%;
    margin: auto;
}
.nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px 0;
}
.nav h2 {
    font-size: 2rem;
}
h2 img {
    width: 30px;
    margin-right: 20px;
    cursor: pointer;
}
.search-box {
    position: relative;
    width: 350px;
}
.search-box input {
    box-sizing: border-box;
    width: 100%;
    font-size: 1rem;
    padding: 8px;
    border-radius: 25px;
    outline: none;
    padding-left: 40px;

    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    border: 1px solid lightgray;
}
input:focus {
    box-shadow: 0 0 5px orange;
    border: 1px solid orange;
}
.search-box svg {
    color: #000;
    position: absolute;
    top: 25%;
    left: 4%;
    transition: .5s;
    cursor: pointer;
}
.search-box svg:hover {
    color: orange;
    width: 20px;
    height: 20px;
}
.invisible {
    display: none;
}
.visible {
    display: block;
}
.cross {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 25%;
    right: 4%;
    cursor: pointer;
}
.grid {
    height: 80vh;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;

    /* width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px; */
}
.grid .img {
    width: 30%;
    height: 350px;
    margin-top: 15px;
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 20px;

    /* width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 5px; */
}
.btn {
    width: 150px;
    height: 35px;
    border-radius: 25px;
    margin: 0;
    border: 0;
    outline: 0;
    margin: 5px auto 20px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #fc0404;
    font-weight: 600;
    /* display: none; */
}

@media(max-width:768px) {
    .img {
        width: 40%;
        height: 50vh;
    }
    .nav {
        justify-content: center;
    }
    .nav h2 {
        padding: 5px 0;
    }
}

@media(max-width:480px) {
    .nav h2 {
        text-align: center;
        font-size: 1.5rem;
    }
    .search-box {
        width: 80%;
        margin: auto;
    }
    .search-box input {
        font-size: .7rem;
    }
}
.footer {
    width: 100%;
    height: 60px;
    background: rgba(36, 36, 36, 0.829);
    margin-bottom: 0;
    padding-top: 20px;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footer__wrapper-bottom {
    display: flex;
    width: 100%;
    height: 20px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 20px;
    justify-content: space-between;
}
.footer-bottom-text {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    text-decoration: none;
}
.footer-bottom-text-center {
    margin-left: 63px;
}
.footer-bottom-text:hover,
.footer-left-text:hover {
    color: #fdfcfc;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.7s;
}
.footer-bottom-text-right {
    margin-right: 20px;
}
.year {
    color: #ffffff;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    margin-left: 20px;
}
