html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #8e8e8e;
}

#scale-wrapper {
    width: 1600px;   /* original design width */
    height: 900px;   /* original design height */
    transform-origin: top left;
    /* scale uniformly based on smaller of viewport width/height */
    transform: scale(
        min(
            100vw / 1600,
            100vh / 900
        )
    );
}
.header-wrapper {
    display: flex;           /* horizontal layout */
    align-items: center;     /* vertically center logo and banner */
    width: 100vw;            /* full viewport width */
    height: 5rem;            /* height of logo/banner */
}

.head-banner {
    flex: 1;                 /* take remaining space to the right */
    height: 100%;
    background-color: #f44336;
    display: flex;           /* optional, for centering text */
    justify-content: center;
    align-items: center;
    text-align: center;
}

#home-logo {
    height: 5rem;            /* keeps original size */
    width: auto;
}


/* Sections container */
.sections {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sections button {
    margin: 0 0.75vw; /* fixed gap in pixels */
}

/* Buttons */
button {
    background-color: #212121;
    height: auto; /* 2.5rem */
    width: 13vw; /* 15rem */
    outline: none;
    font-size: 1.4vw;
    font-weight: 700;
    color: white;
    border-radius: 28px; /* 1.75rem */
    border: none;
    box-shadow: 0 0.35rem rgba(0, 0, 0, 0.5); /* 0.35rem */
    transition: all 0.2s ease-in-out;
}

button:hover {
    background-color: #616161;
}

button:active {
    background-color: #616161;
    box-shadow: 0 5px #666;
    transform: translateY(4px); /* 0.25rem */
}





.contact-form{
    position: relative;
    display: inline-block;
    margin: 1rem;
    padding: 15px;
    align-content: center;
    text-align: center;
    font-family: sans-serif;
    border-radius: 15px;
    border: black solid 7px;
    width: 30vw;
    background-color: white;
}
#suam{
    position: relative;
    top: -10px;
    font-size: 1.75vw;
}
label, legend{
    font-size: 1.25vw;
    font-weight: 700;
}
input{
    text-align: center;
    width: 25vw;
    border: black solid 4px;
    border-radius: 20px;
    padding: 7px;
    background-color: lightgray;
    font-size: 1vw;
    font-family: sans-serif;
}
textarea{
   width: 25vw;
    border: black solid 4px;
    border-radius: 20px;
    padding: 7px;
    background-color: lightgray; 
    background-color: lightgray;
    font-size: 1vw;
    font-family: sans-serif;
}
#sendButton{
    color: black;
    font-size: 1.75vw;
    font-weight: 700;
    width: 13vw;
    border: black solid 4px;
    border-radius: 25px;
    padding: 10px;
    background-color: lightgray;
}
#sendButton:hover{
    background-color: gray;
}
#sendButton:active{
    background-color: gray;
    text-decoration: underline;
}

.text{
    background-color: white;
    width: 30vw;
    position: absolute;
    align-content: center;
    text-align: center;
    margin: auto;
    font-family: sans-serif;
    border-radius: 5vw;
    border-style: solid;
    border-color: black;
    color: black;
    padding: 10px;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
}
.text a{
    color: rgb(0, 110, 255);
}

h1{
    font-weight : 700;
}
h3{
    transform: translateY(-1vw);
}

.information{
    position: relative;
    display: inline-block;
    margin: 1rem;
    padding: 15px;
    align-content: center;
    text-align: center;
    font-family: sans-serif;
    border-radius: 15px;
    border: black solid 7px;
    width: 40vw;
    background-color: white;
}
.inline-box{
  position: absolute;
  top: 6rem;             /* stick at top */
  left: 50%;          /* move to center */
  transform: translateX(-50%); /* center horizontally */
    display: flex;      /* make children inline */
  justify-content: center; /* horizontally center children inside */
  align-items: flex-start;  /* align them at the top */
  gap: 1rem;          /* optional spacing between them */
}

.information h3{
    margin-top: 3px;
    margin-bottom: 3px;
}

.information a{
    color: black;
    text-decoration: none;
}
.information a:hover{
    color: rgb(54, 54, 54);
    text-decoration: underline;
}