html {
  width: 100%;
}

html,
body {
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 1% 10%;
  margin-bottom: 30px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #3a3a3a;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.logo > * {
  margin: 5px;
}

nav {
  padding: 10px;
}

nav a {
  text-decoration: none;
  color: #272727;
  font-size: 22px;
  border-bottom: 4px solid #171717;
  font-weight: bold;
}

.examples {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 300px;
  margin-left: 600px;
  overflow: hidden;
}

.examples img {
  position: relative;
}

main {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

main > * {
  margin: 10px;
}

.presentation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.presentation div {
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3rem;
  text-align: center;
  color: #323232;
  margin: 10px;
  padding: 10px;
}

main p {
  font-size: 20px;
  width: 60%;
  text-align: center;
}

.button {
  all: unset;
  transition: 0.2s;
  font-size: 23px;
  padding: 12px 40px;
  border-radius: 8px;
  cursor: pointer;
  background: #323232;
  color: white;
  letter-spacing: 1px;
  margin: 20px;
}

#follow {
  background: #0e93e6;
  color: white;
}

.logo_inside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px;
}

.logo span {
  position: relative;
}

.logo img {
  position: relative;
  left: 0px;
  top: 10px;
}

#spacename {
  position: absolute;
  top: 70px;
  text-align: center;
  font-size: 22px;
}
