body{
    background: linear-gradient( ivory, rgb(207, 230, 238))
}   

a{
    text-decoration: none;
}

h1{
    color: darkblue;
    text-align: center;
    border: 10px double darkcyan;
    border-radius: 30px;
}

a{
    font-size: 22px;
    border: 2.1px solid rgb(51, 198, 198);
    border-radius: 14px;
}

h2{
    font-size: 28px;
    color: darkblue;
    text-align: center;
    border: 10px double darkcyan;
    border-radius: 30px;
}

p{
    font-family: 'Times New Roman', Times, serif;
    color: darkblue;
}

img{
    margin: 26px 26px;
    width: 390px;
    height: 335px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4;
}

img:hover{
    box-shadow: 0 0 20px darkblue;
    width: 430px;
    height: 370px;
}

iframe{
    margin: 40px 440px;
    width: 500px;
    height: 400px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4;
}
iframe:hover{
     box-shadow: 0 0 20px darkblue;
     width: 580px;
    height: 480px;
}




