body{
    background-color: #eff3f7;
    font-family: Roboto;
    margin: 0;
    padding: 0%;
    white-space: normal;
    align-items: center;
}
ul{
    background-color: transparent;
    color: rgb(16, 30, 77);
    display: inline-flex;
    list-style: none;
    box-sizing: border-box;
    justify-content: space-between;
    gap: 1%;
    margin: 0px;
    font-size: larger;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #0073e6, 
        0 0 30px #0073e6,
        0 0 40px #0073e6,
        0 0 50px #0073e6,
        0 0 60px #0073e6;
    font-weight: 60;
    align-items: end;
    padding: 1rem;
    width:100vw;
    min-width: 100vw;
    position: fixed;
    overflow: hidden;
}
#logo{
    font-size: 20px;
    margin-right: 63%;
    font-size: small;
    align-self: center;
}
#logo img {
    width: 5%;
    height: auto;
}
div{
    margin: 0%;
}
.head{
   background-color: #1f2937;
   color: white;;
    display: flex;
    align-items: center;
    gap: 1%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.main-image{
    float:right;
    width: 25%;
    height: auto;
    border-radius: 2%;
    margin:2%;
}
.heading_text{
    flex: 1;
    padding: 1%;
}
.first_button{
    background-color: #3882F6;
    color: white;
    border-radius: 10px;
    border: none;
    box-shadow: 10px 10px 5px rgb(25, 148, 206);
    padding: 1% 2%;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    float: right;
    margin: 1%;

}
.image-container{
    padding: 2%;
    margin:0%;
    background-color: white;
    color: black;
    display: block;
    gap: 2%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#image-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#image-grid img{
    width: 30%;
    height: auto;
    border-radius: 2%;
    border: #3882F6 solid 1px;
    margin: 1%;
}
.text_body{
    flex-direction: column;
    padding: 2%;
    background-color: #e5e7eb;
}
.note_background{
   display: flex;
    background-color: #ffffff;
    align-items: center;
    text-align: center;
    font-size: small;
    box-sizing: border-box;
    justify-content: center;
}
.notes{
    background-color: #3882F6;
    border-radius: 2%;
    padding: 1%;
    margin: 2%;
    gap: 2%;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: small;
    box-sizing: border-box;
}
.notes_text{
    color: white;
    text-align: center;
}
.second_button{
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    padding: 1% 2%;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    float: right;
    margin: 1%;
}
footer{
    color: black;
    text-align: center;
    padding: 2%;
    margin: 0%;
    font-size: smaller;
}
/*sign up and login styling*/
.container{
    margin: auto;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    place-items: center;
    display: grid;
}
.content{
    background-color: #ffffff;
    background-image: url(wood.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 40%;
    height:50%;
    max-width: 90vw;
    max-height: 80vh;
    padding: 1rem;
    align-content: center;
    text-align: center;
    place-items: center;
    margin-top: 2%;
    border: solid 1px #16243b;
    border-radius: 3%;
    box-shadow: 10px 10px 8px #888888;
    display: flexbox;
    gap: 1rem;
    font-size: 0.9rem;
}
button{
    background-color: #3882F6;
    border: solid 2px #14bff3;
    border-radius: 15%;
    box-shadow: 3px 4px 2px #888888d3;
}
.form-container{
    padding: 1rem;
}
label, input {
  display: block;
}

input {
  margin-bottom: 1rem;

}
.login-form{
    display: none;
}
input{
    width: 100%;
    background: rgba(24, 4, 4, 0.05);
    color: var(--white);
    padding: 0.4rem;
    border: 1px solid rgba(6, 28, 153, 0.3);
    border-radius: 0.5rem;
    font-size: 1rem;
}

input:focus{
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}
.container{
    background-image: url(beautifulcherry.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}