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

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #00A294;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    position: fixed;
    width: 100%;
    height: 8vh;

    background-color: #fff;
    border-bottom: 3px solid #00A294;

    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar a {
    text-decoration: none;
    color: #00A294;
    font-size: 2vh;

    height: fit-content;
    width: fit-content;
}

.navbar svg {
    width: 2vw;
    height: auto;
}

.navbar a:hover {
    border-bottom: 2px solid #00A294;
}

.navlinks {
    height: 100%;
    width: 95%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: fit-content;
}

.devider {
    height: 100%;
    width: 50px;
}

.auth {
    font-weight: 600;
}

.title {
    width: 100%;
    height: 250px;
    padding-top: 80px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.title h1 {
    color: #fff;
    font-size: 80px;

    font-weight: 300;
}

.latest {
    color: #fff;
    border-bottom: 2px solid #fff;
    font-size: 150%;
    height: fit-content;
    width: 90%;
}

.searchbar {
    width: 90%;
    height: 55px;
    background-color: #fff;

    margin-top: 45px;
    border: 2.5px solid black;
    border-radius: 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.searchbar select {
    width: 150px;
}

.searchbar a {
    text-decoration: none;
    color: #fff;
    padding: 7px 40px;
    background-color: #00A294;
    border-radius: 4px;
}

.wrapper {
    width: 90%;
    height: fit-content;
    background-color: #00A294;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: space-between;
}

.anunt {
    width: 300px;
    height: 400px;
    border-radius: 20px;

    background-color: #fff;
    
    display: flex;
    justify-content: center;

    margin-top: 5vh;
}

.detalii {
    height: 100%;
    width: 85%;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.poza {
    width: 100%;
    height: fit-content;
}

.poza img {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.info {
    font-size: 110%;
    font-weight: 600;
}

.location {
    font-size: 110%;
    font-weight: 300;
}

.blank {
    width: 100%;
    height: 10vh;
}