body{
    background-color: white;
    margin: 0;
}
main{
    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    
    
    padding: 20px;
    gap: 30px;
    
}

header{
    display: flex;
    background-color: #60c2ff;
    justify-content: center;
    padding:20px;
    gap: 40px;
}

ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
}

li{
    background-color: #D9D9D9;
    width: 120px;
    height: 40px;
    list-style-type: none;
}

h1{
    justify-content: center;
    color: white;
    font-size: 50px;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.card{
    display: flex;
    justify-content: center;
    align-content: center;

    height: 100%;
}

.one{
    background-color: #FF6060;
}
.two{
    background-color: #D9D9D9;
}
.three{
    background-color: #60C2FF;
    grid-row: 1/4;
    grid-column: 3/4;
}
.four{
    background-color: #FFC260;
    grid-column: span 2;
}
.five{
    background-color: #60C2FF;
}
.six{
    background-color: #D9D9D9;
}