

@import url('https://fonts.googleapis.com/css2?family=Sevillana&display=swap');



body {  

        background-image: url('slike/red-2892235_1280.png');
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white; 
        
   

  
  h1 {
    font-family: 'Sevillana', cursive;
    color: rgb(138, 244, 180); 
    font-size: 4em; 
    text-align: center; 
    position: relative; 
  }
  

  h1::after {
    content: '';
    position: absolute;
    bottom: -8px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: rgb(160, 237, 160);
  }
  
}



    
@media screen and (max-width:800px) {
    main {
        width: auto;
        margin-left:auto ;
        margin-right: auto;
        background-color: aliceblue;
    }
    
    img {
        display: block;
        margin: auto;
    }
}


















