*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(194, 240, 255);
    color: rgb(0, 0, 0);
    

}
header{
    height: 50vh;
    background-image: url(../images/background3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    color: white;
    
    
    display: flex;
    justify-content: center;
    align-items: center;

}
h1{
    text-align: center;
    font-size: 5vw;

    text-shadow: 0 0 30px rgb(255, 255, 255);
    
    /*background-color: rgba(0, 0, 0, 0.6);
    padding-left: 60px;
    padding-right: 60px;
    border-radius: 60px;
    line-height: 2;
    */
}
footer{
    background-color: black;
    color: white;
    font-size: 30px;
    text-align: center;

    padding-top: 10px;
    padding-bottom: 10px;
   
    
}
footer a{
    color: aqua;
}

.flex-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.flex-item{
    flex-basis: calc(33% - 10px);
    flex-grow: 0;
    flex-shrink:0;
    background-color: rgb(0, 255, 213);
    border: 1px solid rgb(0, 0, 0);
    font-size: 15px;
    
}
.flex1{
    background-color: deepskyblue;
    flex-basis:calc(100%)
}
.image{
    width: 100%;
    height: auto;
}
.flex2{
    background-color: lawngreen;
}
.flex3{
    background-color: blue;
}
.flex4{
    background-color: rgb(203, 255, 152);
}
.flex5{
    background-color: blueviolet;
}
.flex6{
    background-color: rgb(123, 193, 255);
}
.flex7{
    background-color: rgb(255, 249, 64);
}
.flex8{
    background-color: aqua;
    

}