:root {
  --deep-blue: #0a1931;
  --blue: #3ddbfa;
  --mid-blue: #9ef;
  --l-blue: #f6f8fe;
  --soft-mint: #cff4e9;
  --dark-gray: #2d2d2d;
  --gray: #7d7d7d;
  --light-gray: #edf6f8;
  --white: #fff;

  --font-family: "Archivo", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Albert Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-evm {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-evm {
  position: relative;
  width: 375px;
  padding: 40px 16px;
}

.section-title-evm {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--deep-blue);
  margin-bottom: 24px;
}

.section-subtitle-evm {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: var(--deep-blue);
  margin-bottom: 40px;
}

.link-evm {
  border-radius: 8px;
  width: 343px;
  height: 51px;
  background: var(--mid-blue);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 150%;
  color: var(--deep-blue);
  transition: all 0.3s ease;
}

.link-evm:hover {
  background: var(--blue);
}

@media screen and (min-width: 1440px) {
  .container-evm {
    width: 1440px;
    padding: 80px 160px;
  }

  .section-title-evm {
    font-size: 44px;
  }

  .section-subtitle-evm {
    font-size: 24px;
  }
}
