@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.80), rgba(0,0,0,0.80)), url("../image/realestate.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

nav {
    width: 100%;
    min-height: 15vh;
    padding: 0px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

nav ul li {
    list-style: none;
    padding: 20px 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

nav ul li a:hover {
    color: #f5af00;
    transition: 0.5s ease;
}

nav ul li .active {
    color: #f5af00;
}

nav .logo {
    margin-top: 10px;
}

nav .logo a {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    initial-letter: 1.5px;
}

nav .toggle {
    font-size: 25px;
    cursor: pointer;
    color: #fff;
    display: none;
}

.content {
    width: 100%;
    min-height: 85vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 80px;
}

.article h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 50px;
}

.article .button a {
    font-size: 15px;
    background-color: #f5af00;
    color: #fff;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 30px;
}

.article .button a:hover {
    background-color: #fff;
    color: #f5af00;
    transition: 0.5s ease;
}

@media screen and (max-width: 800px) {
    .wrapper {
        width: 100%;
    }

    nav {
        padding: 20px 40px;
    }

    nav .logo a {
        font-size: 25px;
    }

    nav ul {
        display: none;
        justify-content: center;
        flex-direction: column;
    }

    nav ul li {
        padding: 12px 0px;
    }

    nav ul li a {
        font-size: 19px;
    }

    nav .toggle {
        display: flex;
        z-index: 1;
    }

    .content {
        width: 100%;
        padding: 0px 40px;
    }

    .article h1 {
        font-size: 40px;
    }

    .article p {
        font-size: 16px;
    }

    .article .button a {
        padding: 12px 20px;
    }

    nav ul.active {
        top: 0;
        left: 0;
        position: fixed;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: #1e222e;
    }
}

@media screen and (max-width: 500px) {
    nav .logo a {
        font-size: 20px;
    }

    .article h1 {
        font-size: 32px;
    }

    .article p {
        font-size: 14px;
    }

    .article .button {
        font-size: 14px;
        padding: 10px 14px;
    }
}