@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{         /* the * means ALL ELEMENTS */
    box-sizing: border-box;     /* by using this we can disregard any padding & border*/
}
body{
    margin: 0;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
    position: relative;
    background-image: url(n1.jpg);
    background-position: right;
    background-size: cover;
    background-attachment: fixed;
}
a{
    text-decoration: none;
}
header{
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    padding-bottom: 20px;
    
}
header a{
    color: #eee;
    font-weight: bolder;
    margin-right: 40px;
}


.main{
    display: block;
    position: relative;
    
}

.main h1{
    color: white;
    border: 2px solid white;
    margin: auto;
    width: 50%;
    max-width: 400px;
    text-align: center;
    font-size: 3em;
}

.main .container{
    display: flex;
    /*border: 2px solid;*/
    height: 90vh;
    flex-wrap: wrap;
    margin-top: 5%;
    margin-left: 6%;
    margin-right: 6%;
}
.box {
    width: 150px;
    height: 150px;
    text-align: center;
    align-self: center;
    border-radius: 15px;
}
#box1{
    /*border: 1px solid;*/
    background-color: hsla(28, 87%, 67%, 0.536);
    width: 55%;
    overflow: auto;
}
#box2{
    background-image: url(who1.jpg);
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    border-radius: 150px;
    /*width: 25vw;
    height: 20vw;
    min-width: 160px;
    min-height: 120px;*/
    width: 45%;
}
#box3{
    background-image: url(CHRISTOS.png);
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    border-radius: 150px;
    /*width: 25vw;
    height: 20vw;
    min-width: 160px;
    min-height: 120px;*/
    width: 45%;
}
#box4{
    background-color: hsla(28, 87%, 67%, 0.536);
    width: 55%;
    overflow: auto;

}
#box5{
    background-color: hsla(28, 87%, 67%, 0.536);
    width: 55%;
    overflow: auto;
}
#box6{
    background-image: url(pexels-dana-tentis-118658-315843.jpg);
    background-position: center;
    background-size:contain;
    background-repeat: no-repeat;
    border-radius: 150px;
    width: 45%;
}
.title{
    font-size: 1.6em;
    font-weight:bold;
}
.descr{
    font-size: 1em;
    font-weight:500;
}