html{
    background-image: url(../../imgs/backround03.webp);
}

h1{
    color: rgb(218, 217, 217);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    align-items: center;
    margin-top: 15%;
}

p{
    color:rgb(218,217,217);
    font-family:Arial,Helvetica,sans-serif;
    
    max-width:40vw;
    margin-left:auto;
    margin-right:auto;
    
    background-color:rgb(19,19,19);
    
    padding:20px;
    line-height:1.6;
    }
    

.btn{
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

button{
    background-color: rgb(24, 24, 24);
    border: none;
    color: rgb(224, 224, 224);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

button:hover{
    background-color: transparent;
    border: 1px solid rgb(24, 24, 24);
    color: rgb(218, 217, 217);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

@media (max-width:768px){

    h1{
    margin-top:25%;
    font-size:10vw;
    }
    
    p{
    max-width:85vw;
    font-size:16px;
    padding:18px;
    }
    
    button{
    font-size:16px;
    padding:10px 18px;
    color: rgb(24, 24, 24);
    background-color: rgb(224, 224, 224);
    }
    
    }