/*------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------*/

body {
  margin: 0;
  border: 0;
  font-family: 'Roboto Mono', monospace;
  background-color: black;
  padding-bottom: 1vw;
  padding-right: 1vw;
}

.header-variants-button {
  background-color: rgb(217,32,0);
  
}

/* CSS for Landscape Here */

#wrapper {width:1024px}


p {
  color: blue;
  margin-left: 1vw;
  font-size: 2vw; 
}

.descspan {
  color: rgb(162,229,249);
}

.guide {
  width: 60vw;
  height: 100%;
  margin-left: 1vw;
}

.title {
font-size: 4vw;
margin: 1vw;
}

.variant-description {
  color: rgb(162,229,249);
  margin-top: 1vw;
  margin-bottom: 3.5vw;
  font-size: 2.5vw;
}

.photoandlink-container {
    display: inline-grid;
    grid-template-columns: 15vw 45vw;
    grid-template-rows: 10.5vw 10.5vw;
    width: 60vw;
    height: 21vw;
    padding: 0;
    margin-left: 1vw;
    /*border: 1px solid pink; /* For visualization */
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* card image section */
.card-section {
    grid-row: 1 / span 2;
    grid-column: 1 / span 1;
    display: flex;
    margin: 0;
    padding: 0;
   /* border: 1px solid purple; /* For visualization */
    /*background-color: #f5f5f5;*/
}

.card {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Major Variant Button Section */
.majorvariantbutton-section {
    grid-row: 1 / span 1;
    grid-column: 2 / span 1;
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    align-items: center;
    /*border: 1px solid blue; /* For visualization */
    /*background-color: #e0f2f7;*/
    padding: 0.5vw;
}

/* Minor Variant Button Section */
.minorvariantbutton-section {
    grid-row: 2 / span 1;
    grid-column: 2 / span 1;
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    align-items: center;
    /*border: 1px solid green; /* For visualization */
   /* background-color: #ffe0b2;*/
    padding: 0.5vw;
}

/* Styling for the actual buttons */
.majorvariantbutton-section button,
.minorvariantbutton-section button {
  height: 4vw;
  width: 25vw;
  font-size: 2vw;
  font-weight: bold;
  padding: 0;
  margin-left: 2vw;
  background-color: rgb(162,229,249);
  border-radius: 1.6vw;
}




/* CSS for portrait Here */

@media only screen and (orientation:portrait){
	#wrapper {width:768px}
	.hello-proof {
	color: red;
}



/*This container holds the variant numbers, titles and photos */

p {
  color: blue;
  margin-left: 1vw;
  font-size: 4vw; 
}

.title {
font-size: 7vw;
margin: 1vw;
text-align: center;
}

.variant-description {
  color: rgb(162,229,249);
  margin-top: 1vw;
  margin-bottom: 3.5vw;
  font-size: 4.5vw;
  text-align: center;
}

img {
  display: block;
  margin: 0 auto;
}

.card {
  width: 50vw;
  height: 100%;
  display: block;
  margin: 0 auto;
  
}

.guide {
  width: 95vw;
  height: 100%;
  
}

.descspan {
  color: rgb(162,229,249);
}


.photoandlink-container {
    display: inline-grid;
    grid-template-columns: 95vw;
    grid-template-rows: 70vw 8vw 8vw;
    width: 95vw;
    height: 98vw;
    padding: 0;
    margin-left: 1vw;
    /*border: 1px solid pink; /* For visualization */
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* card image section */
.card-section {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    display: flex;
    margin: 0;
    padding: 0;
   /*border: 1px solid purple; /* For visualization */
   /*background-color: #f5f5f5;*/
}

.card {
    height: 70vw;
    width: 50vw;
    object-fit: cover;
}

/* Major Variant Button Section */
.majorvariantbutton-section {
    grid-row: 2 / span 1;
    grid-column: 1 / span 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 1px solid blue; /* For visualization */
    /*background-color: #e0f2f7;*/
    padding: 0.5vw;
}

/* Minor Variant Button Section */
.minorvariantbutton-section {
    grid-row: 3 / span 1;
    grid-column: 1 / span 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 1px solid green; /* For visualization */
    /*background-color: #ffe0b2;*/
    padding: 0.5vw;
}

/* Styling for the actual buttons */
.majorvariantbutton-section button
{
  height: 10vw;
  width: 65vw;
  font-size: 3vw;
  font-weight: bold;
  padding: 0;
  margin-left: 0vw;
  margin-top: 8vw;
  background-color: rgb(162,229,249);
  border-radius: 4vw;
}

.minorvariantbutton-section button {
  height: 10vw;
  width: 65vw;
  font-size: 3vw;
  font-weight: bold;
  padding: 0;
  margin-left: 0vw;
  margin-top: 17vw;
  background-color: rgb(162,229,249);
  border-radius: 4vw;
}


}