@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 30px;
    background-color: rgb(205, 205, 205);
    
    
}
img{
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 70px;
}

.row{
    display: flex;
    gap: 15px;
}

h1{
    background-color: rgb(0, 0, 41);
    color:white;
    text-align: center;
    font-size: 70px;
    padding: 20px 50px;
    font-family: 'Abril Fatface', serif;
}
.gallery{
    display: flex;
}
.col{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

button{
    padding: 15px 50px;
    background-color: rgb(0, 0, 41);
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 25px;
}

button:hover{
    background-color: rgb(0, 169, 188);
    cursor: pointer;
}

img {
    transition: transform .4s ease;
}
img:hover {
    transform: scale(1.2);
}
body, html {
    overflow-x:hidden;
}















@media screen and (max-width: 750px){
    .row{
        flex-direction: column;
    }
    .h1{
        font-size: 50px;
    }
   
    
}