html {
	font-family: Arial, sans-serif;
	background-image: url('../images/PCbackground4.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
body {
    background: transparent;
    margin: 0;
	padding: 0;
}
header {
    background-color: red;
    color: black;
    text-align: center;
    padding: 15px 0;
    margin: 15px auto;
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    width: 90%;
  }
.BOX-CONTAINER {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: calc(100vh - 100px);
}
.BOX-CONTAINER a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 650px;
	height: 100px;
	background-color: darkred;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgb(0, 0, 0, 0.2);
	text-decoration: none;
	color: white;
	font-size: 18px;
	font-family: gagalin;
	transition: transform 0.3s, box-shadow 0.3s;
}
.BOX-CONTAINER a:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgb(0, 0, 0, 0.4 );
	background-color: red;
}
@media (max-width: 1499px) and (min-width: 769px) {
    body {
        display: flex;
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
        align-items: center;
        justify-content: center;
    }
	
    .intro-screen {
        height: 100vh;
    }
    .intro-image {
        width: 60%;
    }
    .BOX-CONTAINER {
    	display: grid;
    	grid-template-columns: 1fr;
		align-items: center;
        justify-content: center;

    	height: auto;
		width: auto;
    	gap: 0px !important;
    	padding: 0;
    	margin-bottom: 20px;
    }
	
    .BOX {
        width: 600px !important;
		height: 50px !important;
		margin: 0 !important;
		
    }
}

@media (max-width: 1200px) and (min-width: 769px) and (min-height: 800px) {
     body {
        display: flex;
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
        align-items: center;
        justify-content: center;
    }
    header {
        width: 800px;
    }
	
    .intro-screen {
        height: 100vh;
    }
    .intro-image {
        width: 60%;
    }
    .BOX-CONTAINER {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .BOX {
        width: 550px !important;
		height: 140px !important;

        margin: 10px !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;


        line-height: normal !important;
		
    }
}


@media (max-width: 1200px) and (min-width: 769px) and (max-height: 799px) {

   }
@media (max-width: 1300px) and (min-width: 1100px) {
    body {
        display: flex;
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
        align-items: center;
        justify-content: center;
    }
    header {
        width: 1000px;
    }
    .BOX-CONTAINER {
    	display: flex;
    	grid-template-columns: 1fr;
		align-items: center;
        justify-content: center;

    	height: auto;
		width: auto;
    	gap: 10px !important;
    	padding: 0;
    	margin-bottom: 20px;
    }
	
    .BOX {
        width: 600px !important;
		height: 80px !important;
		margin: 0 !important;
		
    }
}

@media (max-width: 700px) and (min-width: 600px) and (max-height: 650px) {
    .BOX {
        width: 450px !important;
		height: 75px !important;
	}
   
}

@media (max-width: 700px) and (min-width: 600px) and (max-height: 300px) {
    header {
        margin-top: 5px;
        font-size: 15px;
        padding: 10px;
    }
    .BOX-CONTAINER .BOX {
        margin-top: -6px !important;
        margin-bottom: -6px !important;
    }
    .BOX {
        width: 350px !important;
		height: 30px !important;
	}
}

@media (max-width: 480px) {

  
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;   
    touch-action: none;
    overscroll-behavior: none;
  }
  
  body::before {
    content: "";
    position: fixed;
    inset: -6px;              
    background-image: url('../images/PCbackground1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .main-box {
    height: 100svh;            
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  header.naslov {
   height: 48px;
   line-height: 48px;
   padding: 0;
   margin-top: 100px;
   font-size: 15px;
   text-align: center;
  }

  
  .BOX-CONTAINER {
     height: calc(100svh - 80px);
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     padding: 8px;
     margin-top: 30px;
  }

  .BOX {
   max-height: 12svh;
   margin: 0 0;
   border-radius: 20px;

   display: flex;
   justify-content: center;
   align-items: center;

   font-size: 15px !important;
   font-family: Arial !important;
   font-weight: 800;
   color: #b5b5b5 !important;
  }

}
















