@charset "UTF-8";
/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
body {
  height: 100vh;
  padding: 0;
}

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** GRID *****/
a {
    touch-action: manipulation;
    text-decoration: none;  
    color: rgba(47, 57, 65, 1);
    font-family: Helvetica, Arial, sans-serif;
}

.page {
  max-width: 1460px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.container-grid {
  display:grid;
  padding: 0 18% 0 18%;
  height: 100%;
}

.grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.card {
  display:grid;
  justify-items: center;
  width: 100%;
}

.card img {
  	height: 105px;
  	width: 125px;
}

.card #button {
    line-height: 50px;
    border-radius: 10px;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  	justify-self: normal;
}

.card #button:hover {
    background-color: rgb(250, 191, 26);
    color: #ffffff; 
}

.card #picture:hover ~ #button {
    background-color: rgb(250, 191, 26);
    color: #ffffff;  
}

#brand {
    text-align: center;
    padding: 5% 0% 10% 0%;
  	font-family: Helvetica, Arial, sans-serif;
  	color: #485C74;
    font-weight: bold;
  	font-size: 12px;
}

#brand img {
  margin: auto;
  width: 90%;
}

@media (min-width: 900px) {
  .card #button {
    line-height: 50px;
    border-radius: 10px;
    background-color: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  	justify-self: center;
    width: 260px;
	}
  
  #brand {
  	font-size: 14px;
	}
  
  #brand img {
  	margin: auto;
  	width: 600px;
	}
}
