@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}


body{
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

nav{
    margin: 0;
    width: 100%;
    height: 60px;
    background-color: #2E294E;
    color: white;
    /* padding: 10px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: fixed; */
    top: 0;
    z-index: 5;
}
.logo{
    font-size: 22px;
    letter-spacing: 1px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    /* .brandname{
        height: 38px;
        width: 100px;
        background-image: url(logo.jpg);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: contain;
    } */
    a{
        font-family: "Rubik Doodle Shadow", system-ui;
        font-weight: 400;
        font-size: larger;
        font-style: normal;
        text-decoration: none;
        color: #FFD400;
    }
    i{
        font-size: 28px;
        margin-right: 10px;
    }
}
nav ul{
    list-style: none;
    display: flex;
    gap: 5px;
    margin-right: 30px;
    a{
        text-decoration: none;
        color: inherit;
    }
    li{
        transition: all .3s ease;
        cursor: pointer;
        width: auto;
        padding: 10px;
        border-radius: 5px;
    }
}
nav ul li:hover{
    background-color: white;
    color: black;
}

main {
    padding: 20px 0;
}

.get-started {
    background-color: #F1E9DA;
    padding: 40px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.get-started h2 {
    color: #D90368;
}

.get-started p {
    color: #D90368;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #D90368;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #D90368;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #2E294E;
    color: #fff;
}
form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #FFD400;
    border-radius: 5px;
}
.container {
    position: relative;
}

