@import "css/reset-css.css";

/* font */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  font-family: "Roboto", sans-serif;
}

/* Layout */
.flex {
  display: flex;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

/* Components */

/* page and background */
.page {
  background-image: url("assets/landschaft.svg");
  background-repeat: no-repeat;
  background-position: 30% 75%;
  background-color: #ef7c8c;
  background-size: cover;
  max-width: 40rem;
  margin: auto;
  padding: 2rem;
  padding-top: 0.5rem;
}

/* logo */

.logoContainer {
  height: 6rem;
}

.logoImg {
  height: 100%;
}

/* title and text */

.text {
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.title {
  color: #0A163E;
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.5rem;
}

/* buttons */
.linkContainer {
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.storeLinkImg {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

/* smartphone img */

.smartphoneImg {
  object-fit: contain;
}