main {
    margin: 10px;
    padding: 10px;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    min-height: calc(100vh - 62px - 50px);
}

header{
    background-color: blanchedalmond;
    display: flex;
    height: 62px;
    padding: 0 30px;
}

header ul{
    display: flex;
    align-items: center;
    height: 62px;
    justify-content: flex-end;
    gap: 60px;
}

header ul li{
    list-style: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

header li a{
    text-decoration: none;
    color: black;
}

nav{
    /*background-color: tomato; */
    /*display: inline-block; */
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

main{
    background-color: aliceblue;
    padding: 20px 20px 60px 20px;
}

main#form_main{
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#my_form{
    width: 400px;
    color: black;
    border: 1px solid blue;
    border-radius: 5px;
    padding: 5px;
    backdrop-filter: blur(5px);
}

#my_form fieldset{
    color: black;
    border: 1px solid blue;
    border-radius: 5px;
    padding: 5px;
}

#my_form legend{
    margin-left: 30px;
    color: black;
    padding: 0 4px;
}

.input_group, .input_group1{
    padding: 15px 10px;
}

.input_group{
    padding: 10px 10px;
}

.input_group input{
    width: 95%;
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    font-size: 14px;
}

.input_group label, .input_group input{
    display: block;
}

#submit_btn{
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

#submit_btn:hover{
    background: blue;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 5px blue
                0 0 25px blue
                0 0 50px blue
                0 0 100px blue;
}

#my_form h3{
    font-weight: normal;
    font-size: 20px;
}

#card_cont{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-evenly;
}

.product_card{
    border: 5px solid red;
    border-radius: 20px;
    margin: 15px;
    padding: 10px;
    width: 300px;
    box-shadow: 1px 1px 15px gray;
}

footer{
    background-color: gray;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

p#first_paragraph{
    color: black;
}

p#second_paragraph{
    color: brown;
}

p{
    color: blue;
    font-size: 15px;
    font-weight: normal;
}

main  p.blah{
    color: coral;
}