* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000;
}

html {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
}

body {
  width: 100%;
}

#container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 400px;
}

#svg {
  height: 120px;
  margin-right: 20px;
}

h1 {
  font-size: 5em;
  font-weight: 800;
}

#links {
  padding-left: 40px;
  border-left: 1px solid white;
  margin-left: 40px;
}

a {
  display: block;
  font-size: 1rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
  text-decoration: none;
}

a:hover, a:active {
  color: #e5a00d;
}


.comp-page {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.comp-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.comp-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.comp-images img {
  width: 480px;
  max-width: 100%;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.comp-images img:hover {
  transform: scale(1.05);
  border-color: #e5a00d;
}