* {
    margin: 0;
    padding: 0;
    
  
}
body{
    background-image: url("img/vp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.container{
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto 1fr;
    
}

.header{
    padding: 20px;
    height: auto;
}

.mail{
   
    
    text-align: center;
    font-size: 40px;
    
}

a{
    text-align: center;
    font-size: 40px;
    color: blanchedalmond;
    text-decoration: none;
    cursor: pointer;
}


h3 {
    text-align: center;
    font-size: 40px;
    color: blanchedalmond;
}

h2 {
    text-align: center;
    font-size: 30px;
    color: #871139;

}

.photo {
    display: flex;
    justify-content: center;
    align-items: center;
   
    
    
}


.photo .item:nth-child(2):hover {
    border: 4mm ridge#A0171F;
    transition: 2s;
    border-radius: 10%;
    padding: 10px;
}

.photo .item:nth-child(3):hover {
    border-image-repeat: 2mm ridge #A0171F;
    border-radius: 10%;
    transition: 1s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

p{
    font-size: 30px;
}
footer {
    display: flex;
    flex-grow: 1;
    color: white;
    width: 100%;
    height: auto;
    justify-content: center;
    bottom: 0;
    position: absolute;
}

.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
}

.content {
    
    text-align: center;
    font-size: 20px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (min-device-width: 150px) and (max-device-width: 798px) {
    h1 {
        font-size: 40px;
        color: blanchedalmond;
    }
    h2 {
        font-size: 100px;
        color: #A0171F;
    }
     h3{
         font-size: 50px;
     }
   
     .photo{
        margin-top: 10vh;
       
        background-size: 600px;
        object-fit: cover;
    }

   


}


@media screen and (min-device-width: 800px) {
    .menu {
        justify-content: space-between;
    }
    .photo {
        justify-content: center;
        
    }

    .content {
        display: none;
    }

}