* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  outline: none;
  border: none;
  text-decoration: none;
  list-style: none;
  user-select: none;
}

:root {
  --btn-bg: #ff5100;
  --btn-bg-hover: #ff7300;
  --text-main-color: #000;
  --main-bg: #f5f5dc;
  --sub-text-color: #fff;
  --sub-bg: #001761;

  --main-text-size: 1.5rem;
  --transition: all 300ms ease-in-out;
}

::-webkit-scrollbar {
  width: 15px;
}
body {
  overflow-x: hidden;
}
main {
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.paragraph {
  font-size: 1.8rem;
}
section {
  margin-top: 8rem;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.btn {
  background-color: var(--btn-bg);
  color: var(--sub-text-color);
  padding: 1rem 2rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  cursor: pointer;
}
.btn:hover{
  background-color: var(--btn-bg-hover);
}