@import url("https://fonts.googleapis.com/css?family=Roboto:100,400,700&display=swap&subset=cyrillic,cyrillic-ext,greek,greek-ext");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #eee;
  background-image: url("img/world-map-vector-free-download-6.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.title {
  text-align: center;
}

.logo {
  width: 30%;
  margin-bottom: 20px;
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

h1 {
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
}

.countries {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 100px;
}

.countries a {
  display: flex;
  align-items: center;
  width: 20%;
  margin: 20px 0;
  text-decoration: none;
  color: #000;
  font-size: 24px;
}

.countries img {
  margin-right: 10px;
}

.delivery {
  margin-top: 50px;
  text-align: center;
}

.delivery p {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  h1 {
    margin-top: 50px;
  }

  .countries a {
    width: 30%;
    font-size: 20px;
  }
}

@media (max-width: 740px) {
  body {
    background-position: center;
    background-size: 100%;
  }

  .logo {
    width: 50%;
  }

  .countries {
    margin: 0 20px;
  }

  .countries a {
    flex-direction: column;
    justify-content: center;
    width: 30%;
    font-size: 16px;
    text-align: center;
  }

  .countries img {
    margin-right: 0;
  }

  .delivery p {
    font-size: 25px;
  }

  .delivery {
    margin-bottom: 20px;
  }
}