@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed: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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Barlow Semi Condensed", serif;
    
}

body{
    font-size:13px;
    font-weight: 400;
    background-color: hsl(210, 46%, 95%);
}


.container{
    width: 80%;
    margin: 5% auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: minmax(300px, 200px);
    grid-gap: 20px;
}

.division-0ne{
    grid-column: span 2;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;

    padding: 2em;
    position: relative;
    z-index: 0;

    border-radius: 10px;
    outline: none;
    border: none;

    background-color: hsl(263, 55%, 52%);
}
.double{
    position: absolute;
    top: 0;
    right: 5em;
    z-index: -1;
    opacity: 70%;
}

.mainTopic{
    color: white;
    font-weight: 500;
}

.mainTopics{
    color: black;
    font-weight: 500;
}
.secTopic{
    color: white;
    opacity: 50%;
}

.secTopics{
    color: black;
    opacity: 50%;
}
.danial-profile{
    display: flex;
    gap: 1em;
    width: 200px;
   color: white;
    font-size: 13px;
    text-align: center;
    align-items: center;
}
.danial-profile p{
    color: hsl(0, 0%, 100%);
    opacity: 50%;
}

.danial-profile p{
    color: black;
    opacity: 50%;
}
.profilePic{
    border-radius: 100%;
    border: 2.5px solid hsl(263, 55%, 72%);
    width: 20%;
}

.profilePics{
    border-radius: 100%;
    border: 2.5px solid hsl(0, 0%, 20%);
    width: 20%;
}

.division-Three{
    grid-row: span 2;
    background-color: hsl(0, 0%, 100%);
    color: black;

    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;

    border-radius: 10px;
    outline: none;
    border: none;
}

.division-Five{
    grid-column: span 2;
    background-color: hsl(219, 29%, 14%);

    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;

    border-radius: 10px;
    outline: none;
    border: none;
}

.division-Two{
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;

    border-radius: 10px;
    outline: none;
    border: none;

    background-color: hsl(217, 19%, 35%);
}

.division-Four{
    background-color: hsl(0, 0%, 100%);
    color: black;

    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;

    border-radius: 10px;
    outline: none;
    border: none;
}

@media (max-width: 500px){
    .container{
        display: flex;
        flex-direction: column;
    }
}