body{
    margin: 0;
    padding: 0;
    max-width: 100%;
    font: 1em sans-serif;
}

.black{
    color: white;
    background-color: black;
}

header{
    padding: 8px 0px;
    background: rgb(254, 253, 253);
    display: flex;
    align-items: center;
    justify-content: space-between;

    .fa-solid{display: none;}    
    img{
        margin: 0;
        height: 35px;
    }

    .buy{
        font-size: 18px;
        font-weight: 500;

        a{
            color: black;
            text-decoration: none;
            padding: 5px;   
        }
    }

    .login{
        display: flex;
        align-self: center;
        justify-self: center;

        .login1{
            margin-right: 8px;
            font-size: 18px;
            font-weight: 500;
            padding: 8px 20px;
            border: 0;
            border-radius: 50px;
        }
        .login2{
            margin-right: 8px;
            font-size: 18px;
            font-weight: 500;
            padding: 8px 20px;
            border: 0;
            border-radius: 50px;
        } 
        .login3{
            height: 30px;
            margin-right: 20px;
        }     
    }
}

.section1{
    background-image: url(../assignment/Rectangle\ 1.png);
    height: 650px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    .form{
        padding: 20px 50px;
        position: absolute;
        background-color: white;
        width: 60%;
        border: 1px black solid;
        border-radius: 10px;
        h1{
            font-size: 45px;
            text-align: center;
        }
        select{
            text-align: center;
            font-size: 20px;
            height: 50px;
            width: 24%;
            background-color: rgb(237, 238, 238);
            border-radius: 10px;
            border: none;
            margin-bottom: 20px;
        }
        .form1{
            font-size: 20px;
            width: 73%;
            padding: 12px;
            margin-right: 5px;
            background-color: rgb(237, 238, 238);
            border-radius: 10px;
            border: none;
        }
        .form2{
            font-size: 20px;
            padding: 12px 0;
            width: 24%;
            border-radius: 30px;
            border: none;
            background: #00EBC7;
        }
    }
    a{
        font-size: 20px;
        position: absolute;
        bottom: 50px;
        color: white;
        border: 1.5px white solid;
        padding: 10px 25px;
        border-radius: 30px;
    }
}

.sell{
    background-color: #FDE24F;
    padding: 10px;
    padding-bottom: 50px;
    p{
        font-size: 35px;
    }
    img{
        max-width: 100%;
    }
}

h3{
    font-size: 30px;
    margin-left: 50px;
}

.features{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;

    .fbox{
        width: 300px;
        text-align: center;
        h4{
            font-size: 24px;
            
        }
        
        p{
            font-size: 20px;
            margin-top: -10px;
        }
        a{
            color: #000;
            font-size: 16px;
            font-weight: 600;
        }
    }  
    .line{
        height: 2px;
        width: 90px;
        background-color: #000;
    }  
}

.see{
    display: block;
    margin: 20px auto;
    background-color: white;
    font-size: 22px;
    border: 1px solid black;
    padding: 10px 25px;
    border: 2px solid black;
    border-radius: 50px;
}

.blur{
    border-top: 2px solid black;
    margin-top: 30px;
    display: flex;
    width: 100%;
    .blur1{ 
        padding: 20px;
        width: 50%;
        border-right: 2px solid black;

        div{
            display: flex;
            align-items: center;
            justify-content: space-around;
            border: 1px solid black;
            padding: 5px;
            width: 95%;
            border-radius: 15px;
            margin-bottom: 30px;
            img{width: 70px;}
            p{font-size: 20px;}
        }
        button{
                font-size: 22px;
                height: 45px;
                width: 200px;
                border: none;
                border-radius: 15px;
                display: block;
                margin: 50px auto;
            }
    }
    .blur2{
        padding: 20px;
        width: 50%;

        div{
            display: flex;
            align-items: center;
            justify-content: space-around;
            border: 1px solid black;
            padding: 5px;
            width: 95%;
            border-radius: 15px;
            margin-bottom: 30px;
            img{width: 70px;}
            p{font-size: 20px;}
        }
        button{
            font-size: 22px;
            height: 45px;
            width: 200px;
            border: none;
            border-radius: 15px;
            display: block;
            margin: 50px auto;
        }
    }
}

.sign_up{
    background: #CFBAFF;
    font-size: 35px;
    text-align: center;
    padding: 50px;
    border-top: 2px solid black;

    button{
        padding: 15px 45px;
        font-size: 25px;
        border: none;
        border-radius: 30px;
    }
}

footer{
    width: 100%;
    padding-bottom: 5px;

    .foot1{
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        ul{
            list-style: none;
            margin-left: -40px;
            line-height: 30px;
        }
    }
    
    p{
        font-size: 10px;
        padding: 15px;
    }
}

@media (max-width:750px) {
    header{
        display: block;
        
        .fa-solid{
            display: inline-block;
            margin-right: 30px;
            position: absolute;
            right: 0;
        }
        .buy{
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 5px 0;
            background-color: rgb(234, 234, 234);
        }
        .login{
            display: flex;
            align-items: center;
            justify-content: space-around;
            margin-top: 5px;
        }
    }
    .section1 .form{
        margin-bottom: 100px;
        h1{
            font-size: 40px;
        }
        select, .form1, .form2{
            width: 100%;
            margin-bottom: 10px;
        }  
    } 
    .features{
        display: block;
        width: 99%;
        .line{display: none;}
        .fbox{
            width: 100%;
            border: 1.5px solid rgba(128, 128, 128, 0.855);
            display: flex;
            align-items: center;
            justify-content: space-between;
            P{width: 45%;
                font-size: 16px;
                margin-top: 10px;
            }
        } 
    }
    .blur{
        display: block;
        width: 100%;
        border: none;
        .blur1{
            width: 94%;
            border: none;
        }
        .blur2{
            width: 94%;
            border: none;
        }
    }
}