@charset "utf-8";
/* CSS document */

.bigBlue {
    font-size: 26px;
    font-family: "Lucida Calligraphy" , Arial, serif;
    color:darkgrey
}
.smallPink {
    font-size: 28px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:darkgrey
}
.greenTea {
    font-size: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: darkgray;
}
table {
    border-collapse: collapse;
}
table.center {
    margin-left: auto;
    margin-right: auto;
}
nav td {
    background-color: lightblue;
    width: 100px;
    height: 40px;
    font-size: 24px;
    color: hotpink;
    text-align: center;
    border: 1px solid peachpuff;
    border-radius: 15px;
}
nav tr{
    margin: 30px auto;
}
tr a {
    color: hotpink;
    text-decoration: none;
}
ul.nav1 {
    margin-left: 30px;
}
li.nav1{
    width: 100px;
    height: 40px;
    background-color: pink;
    list-style-type: none;
    font-size: 24px;
    color: aliceblue;
    text-align: center;
    border: 2px solid peachpuff;
}
.form-row {
    padding: 10px 0;
    display: flex;
}
.form-row label {
    padding-right: 10px;
}
.form-row input {
    flex: 1;
}
.column-layout {
    max-width: 1300px;
    background-color: lightpink;
    margin: 40px auto Ø auto;
    line-height: 1.65;
    padding: 20px 50px;
    display: flex;
 }

 .main-column {
    flex: 2;
    order: 1;
 
}
 .sidebar-one {
    flex: 1; ;
    order: 2;
 
}
 .sidebar-two {
    flex: 1;
    order: 3;
 }

.call-outs-container {
    max-width: 1400px;
    margin: 40px auto Ø auto;
    display: flex;
    justify-content: space-between;
}

.call-out {
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    flex-basis: 30%;
}

.call-out:nth-child(1) {background-color: blueviolet;}
.call-out:nth-child(2) {background-color: lightblue;}
.call-out:nth-child(3) {background-color: hotpink;}

@media (min-width: 900px) {
    .call-outs-container {
        display: flex;
        justify-content: space-between;
    }
}
 
.equal-height-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
}

.first {
    background-color:lightblue;
    padding: 20px;
    flex: 1;
}

.second {
    background-color:peachpuff;
    flex: 1;
    flex-direction: column;
}

.second-a {
    background-color:grey;
    flex: 1;
}

.second-b {
    background-color:hotpink;
    flex: 1;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: pink;
    font-size: 3rem;
    color: grey;
    box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem, rgba(3, 8, 20, 0.1) 0px 0.075rem 0.175;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    transition: all 500ms;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card:hover {
    box-shadow: rgba(2, 8, 20, 0.1) 0px 0.35rem 1.175em, rgba(2, 8, 20, 0.08) 0px 0.175em 0.5em;
    transform: translate(-3px) scale(1.1);
}

.basic-grid {
    display: grid;
    gap: 1rem;


    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;


    grid-template-columns: repeat(12, 1fr);


    grid-template-columns: repeat(12, minimax(240px, 1fr));


    grid-template-columns: repeat(auto-fit, minimax(240px, 1fr));
    grid-auto-rows: 240px;
}