@charset "UTF-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

header {
	background-image: url("images/header.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
	padding: 8px;
}

nav {
	padding: 0px 0px;
	font-size: .8rem;
}

.primary-navigation ul {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	list-style: none;
	text-decoration: none;
	padding: 0px 12px;
	margin: auto;
}

.primary-navigation a {
	font-weight: 480;
	text-decoration: none;
	padding: 0 auto 0 auto;
	color: #fff;
}

.primary-navigation a:hover {
	color: #376CFF;
}

primary-navigation a:active{
	color: #376CFF;
}

main {
	background-image: url("images/center.png");
	background-repeat: no-repeat;
	background-size: cover;
	min-block-size:500px;
	border: dottet red;
	padding: 50px;
	
}

.four-column-layout {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 1em;
	gap: 1.25rem;
	margin-inline: auto;
}

/* Media query for screens 768px wide or less (e.g., tablets and mobile) */
@media screen and (max-width: 768px) {
  .four-column-layout {
    /* Change to 2 columns on smaller screens */
    grid-template-columns: repeat(2, 1fr);
  }
}

.two-column-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 1em;
	gap: 1.25rem;
	
}


footer {
	font-size: .7rem;
	color: #C2C2C2;
	text-align: center;
	position: relative;
	bottom: 0;
	width: 100%;
}

img {
	display: block;
	max-inline-size: 100%;
}

.wrapper {
	max-inline-size: 800px;
	margin: auto;	
}

.separation {
	background-color: #002862;
	padding: 8px;
}

.thumbnail {
    border: 1px solid #dee2e6;
    height: auto;
    padding: .25rem;
    border-radius: .25rem;
    max-width: 100%;
    background-color: #F2F2F2;
}

h1 {
	text-align: center;
	font-size: 2rem;
}

h2 {
	text-align: center;
	font-size: 1rem;
	font-weight: 400;
}

h3 {
	font-size: 1rem;
}


p {
	margin-block: 0;
	padding-top: .5rem;
	color: #333232;
	font-weight: 400;
}

form {
	font-size: .8rem;
	line-height: 1.5rem;
	background: var(--white);
	max-inline-size: 800px;
	margin-inline: auto;
	
}

input {
	width: 100%;
}

textarea {
	width: 100%;
	height: 10em;
	
}

button {
    color: #fff;
    background-color: #0078FF;
    padding: .3rem .5rem;
    -webkit-box-shadow: inset 0px 0px;
    box-shadow: inset 0px 0px;
    border-radius: 6px;
    border: none;
	font-weight: 500;
}

.spacing {
	line-height: 1.7rem;
	color: #002862;
	font-weight: 470;
}