@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;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #00A294;
}

.navbar {
    width: 100%;
    height: 8vh;
    background-color: #00A294;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    border-bottom: solid 2px;
    border-color: #fff;
}

.logo {
    color: #fff;
    padding-left: 15px;
}

.navlinks {
    width: 400px;
    height: 100%;
    display: flex;
    padding-right: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.closebtn {
    display: none;
}

.navlinks a {
    text-decoration: none;
    color: #fff;
}

.navlinks a:hover {
    border-bottom: solid 2px #fff;
    transition: 0s;
}

.loginDesktop {
    font-weight: 600;
}

.loginTel {
    font-weight: 600;
    display: none;
}

.home {
    width: 100%;
    height: 90vh;
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.home h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
}

.home a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    border: solid 2px #fff;
    padding: 12px 50px;
    border-radius: 40px;
    border-width: 3px;
}

.home a:hover {
    color: #00A294;
    border-color: #00A294;
    background-color: #fff;
    transition: 0.3s;
}

.home p {
    color: #fff;
    font-size: 20px;
}

.menubtn {
    display: none;
}

.detalii {
    width: 100%;
    min-height: 92vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #00A294;
}

.detalii h1 {
    font-size: 40px;
    font-weight: 500;
    margin-left: 30px;
    padding-top: 20px;
    margin-bottom: 15px;
    border-bottom: solid 4px #00A294;
}

.detalii p {
    font-size: 20px;
    padding-left: 30px;
    padding-top: 15px;
    padding-bottom: 40px;
}

a.anchor {
    display: block;
    position: relative;
    top: -5vh;
    visibility: hidden;
}

@media( max-width: 700px ) {
    .menubtn {
        display: block;
        color: #fff;
        padding-right: 15px;
    }

    .loginTel {
        display: block;
    }
    .loginDesktop {
        display: none;
    }

    .home h1 {
        font-size: 25px;
        text-align: center;
    }
    .home a {
        font-size: 25px;
    }
    .home p {
        font-size: 14px;
        text-align: center;
        padding: 0 15px 0 15px;
    }
    .home p br {
        display: none;
    }

    .navlinks {
        position: absolute;
        background-color: #fff;
        height: 100vh;
        width: 45%;
        top: 0;
        right: -220px;
        text-align: left;
        z-index: 2;
        transition: 1s;

        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    .navlinks a {
        font-size: 20px;
    }
    .navlinks a, p {
        color: #00A294;
    }
    .closebtn {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .detalii h1 {
        font-size: 30px;
        margin-top: 20px;
        padding: 0;
    }
    .detalii p {
        font-size: 14px;
        margin-top: 10px;
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 5px;
    }
}