html { 
  background: url(bckgnd_desktop.gif) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@font-face {
  font-family: customFont;
  src: url(hk-grotesk.regular.otf);
}


body {
    /*font-family: OCR A Std, monospace;
     font-family: HK Grotesk, Regular;*/
     font-family: customFont;
    margin: 0;
    padding: 0;
}



header {

    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;

}

h1 {
    font-size: 36px;
    color: #333;
}

p {
    font-size:2em; /* 5vw;*/

    color: #ffffff;
    text-align: center;
}




.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 10px 10px;
}

.social-links img {
    width: 100px;
    height: 100px;
    border-radius: 30%;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.3);
}

img {
    max-width: 800px;
    width: 80%;
}

.container {

    max-width: 1600px;
    margin: 20px auto;
    text-align: center;
}
.containerflex{

	display: flex;
	text-align: center;
	vertical-align: middle;
	align-items:center;
	justify-content: space-between;
	gap: 5%;
	margin: 1em;
	/*padding: 5em;*/

}

.containerflex p {
border-width : 1px ;
border-style: solid none solid none;
}

/* MOBILE */

@media (width <= 1000px) {
html { 
  background: url(bckgnd_smartphone.gif) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.containerflex{

	display: flex;
	text-align: center;
	vertical-align: middle;
	align-items:center;
	flex-direction: column;
	gap: 5%;
	margin: 0 0em;
}

p {
    font-size:1em; 
}

.social-links img {
    width: 60px;
    height: 60px;
    border-radius: 30%;
    transition: transform 0.3s ease;
}

}

