

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-image: url("./images/california_rural_pexels.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    min-height: 100%;
    min-width: 100%;
    z-index: 1;
    background-attachment: fixed;
    
}
 /* .background{
    position: relative;
}  */

.glass-header{
    background: white;
    min-height: 10vh;
    min-width: 75vh;
    margin:1%;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 3rem;
    z-index: 3;
    backdrop-filter: blur(0.2rem);
    display: flex;
}

.header-text{
    position: inherit;
    margin: auto;
}

.glass{
    background: white;
    min-height: 90vh;
    min-width: 75vh;
    margin:1%;
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 3rem;
    z-index: 3;
    backdrop-filter: blur(0.08em);
    display: flex;
}

.first{
    margin-bottom: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    align-items:center;
    
}

.second{
    
        margin-bottom: 2%;
        display: flex;
        flex-wrap: wrap;
        justify-content:space-evenly;
        align-items:center;
}


.popup{
    background-color: #99e6ff;
    width: 450px;
    padding: 30px 40px;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 10;
    border-radius: 1.5rem;
    font-family: "Poppins", sans-serif;
    display: none;
    transition: ease-in 1s;
}

.popup button{
    display: block;
    margin: 0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #0f2eda;
    border: none;
    outline: none;
    cursor: pointer;

}

.popup p{
    text-align: justify;
    margin: 20px;
}

.popup a{
    display: block;
    width: 150px;
    position: relative;
    margin: auto;
    text-align: center;
    background-color: rgba(24, 105, 225, 0.897);
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 5px 0;
}


a {
    text-decoration: none;
    color: black;
}