@font-face{
  font-family: myrid-bold;
  src: url("../fonts/MYRIADPRO-BOLD.OTF");
}

@font-face{
  font-family: myrid-semibold;
  src: url("../fonts/MYRIADPRO-SEMIBOLD.OTF");
}

@font-face{
  font-family: myrid-regular;
  src: url("../fonts/MYRIADPRO-REGULAR.OTF");
}


#instruction{
  margin-bottom: 30px;
  color: #fff;
  font-family: myrid-semibold, sans-serif;
}


.country_buttons_label{
  color: #fff;
  margin-bottom: 10px;
}


.country_buttons_wrapper {
  display: flex;
  gap: 10px;
 	flex-wrap: wrap;
  font-family: myrid-semibold, sans-serif;
  margin-left: 10px;
  margin-right: 10px;
}

.country_buttons_wrapper a{
  text-align: center;
  background: #d60e19;
  color: #fff;
  padding: 10px 50px 10px 50px;
  border-radius: 8px;
  flex-direction: row;
  width: 100px;
  text-decoration: none;
}

.country_buttons_wrapper a:hover{
	background: #a40912;
	cursor: pointer;
}


.country_buttons_wrapper a.active {
   background: green;
}


/*global-styling*/
html {
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

body {
  margin: 0;
  padding: 0;
  font-family: myrid-regular, sans-serif;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: fixed no-repeat url(../images/background_img.jfif) #fff;

  background-size: cover;
  background-position: bottom right;

  box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2);
}

.content {
  flex: 1;
  width: 100%;
  margin: 0 auto;
  padding: 5% 5%;
  background: -webkit-linear-gradient(top,rgba(0,0,0,0.9) 0,rgba(0,0,0,0.5) 110px,rgba(0,0,0,0.3) 100%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,rgba(0,0,0,0.9) 0,rgba(0,0,0,0.5) 110px,rgba(0,0,0,0.3) 100%,rgba(0,0,0,0) 100%);
}

.logo {
  height: 40px;
  padding: 30px 5% 10px;
  background: #000;
}

.logo img {
  height: 100%;
}

footer p{
  clear: both;
  background: #000;
  color: #fff;
  height: 50px;
  padding-top: 2%;
  padding-left: 5%;
}

p {
  margin: 0px;
}


/*mobile-styling*/
@media all and (min-width:0px) and (max-width: 360px) {
	.country_buttons_wrapper a{
  	width: 60%;
  	padding: 20px 50px 20px 50px;
	}
}

/*small-tablet-styling*/
@media only screen and (min-width: 480px) {}

/*large-tablet-styling*/
@media only screen and (min-width: 768px) {}

/*desktop-styling*/
@media only screen and (min-width: 960px) {}

/*override-styling*/
