.header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-size:40px; 
    color: #1D5B79;
}

p{
    font-family: 'Satisfy', cursive;
    font-size:20px;    
    color: #071952;
}

.container{
    display:flex;
    flex-direction:column; 
    align-items: center;   
}

.btn{
    padding:20px;
    margin-top:50px;
    border-radius:40px;
    width:300px;
    font-size:20px;
    font-family: 'Satisfy', cursive;
    border-color: #1D5B79;
    }

    .btn:hover{
        background-color:#FFE7A0;
    }

#myVideo{
    position:fixed;
    top:0;
    right:0;
    min-height: 100%;
    min-width: 100%;
    z-index:-10;
}

a{
    text-decoration: none;
    color: #071952;
    
}

/* Mobile styles */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
        text-align: center;
        padding: 0 10px;
    }

    p {
        font-size: 16px;
        padding: 0 15px;
        text-align: center;
    }

    .btn {
        width: 80%;
        padding: 15px;
        font-size: 18px;
        margin-top: 30px;
    }

    .container {
        padding: 20px 0;
    }

    .header {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
        padding: 12px;
        border-radius: 30px;
    }
}
