* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 24px;
    line-height: 1.44;
    height: 100%;
    scroll-behavior: smooth;
}
header {
    background-color: #B2B0E8;
}
body{
    background-color: #7A85C1;
}
h1{
    font-family: "kavoon", serif;
    font-size: 1.5rem;
    padding: 1rem;
    color: #1A2A80;
}
#grid{
    display: Grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap:2rem;
    padding: 3rem;
}
@media screen and (max-width:890px){
    #grid{
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    
}
.card{
    background-color: white;
    border: white solid 20px;
    box-shadow: 3px 13px 20px black ;
   
}
iframe{
    align-items: center;
    width: 100%;

}
p{
    text-align: left;
    font-size: 20px;
}

footer{
    background-color: #B2B0E8;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}
a{
   font-family: "kavoon", serif;
    font-size: 1rem;
    padding: 1rem;
    color: #1A2A80;
    text-align: center;
    
}