body{
    margin: 0;
        font-family: 'Montserrat', sans-serif;
        background-color: #0789A9;
        color : #333333;
        text-align: center;
        display:grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
}
#header{
        grid-column: 2/3;
        grid-row: 1/1;
        place-self: center;
        padding: 20px;
}
#text{
        grid-column: 1/ span 3;
        grid-row: 2/span 3;
        width: 600px;
        place-self: center;
        padding:20px;
        color: white;
}

#text a:hover{
        color:rgb(129, 215, 255);
        text-decoration: none;
}
#video{
        grid-column: 2/2;
        grid-row: 6/span 3;
        place-self: center;
        padding: 20px;
}
.btn {
    display: inline-block;
    background-color: #e22d73;
    border-radius: 30px;
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 20px;
}