body{
    background-color: white;
}
main{
    
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    
    
    height: auto;
    
    margin:20px;
    gap: 30px;
    
}

header{
    display: flex;
    flex-wrap: wrap;
    background-color: #60c2ff;
    justify-content: center;
    padding: 50px;
    top:0;
    align-items: center;
}

ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 35px;
}

li{
    background-color: #D9D9D9;
    width: 6rem;
    padding: 2rem;
    list-style-type: none;
}

h1{
    justify-content: center;
    -webkit-text-fill-color: white;
    font-size: 5rem;
    font-family: Arial, Helvetica, sans-serif;
    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;
}