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

:root {
  font-size: 62.5%;
}

body {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  background-color: #FFE9EF;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;

  overflow-x: hidden;
}

.desktop-only{
  display: none;
}

.whole-window {
  width: 100vw;
  height: 200vh;
  min-height: 100%;
  overflow-y: hidden;
  padding: 1.5rem 2rem;
}

a {
  color:black;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

.underline{
  text-decoration: underline;
}

.logos{
  font-weight: 400;
  padding: 2rem 2rem;
  display: flex;
  align-items:center;
  justify-content: flex-end;
  width: 100%;
  height: 75px;
  font-size: 1.6rem;
}

.logos img{
  margin-left: 2rem;
  height: 35px;
}

.logos-inside{
  display: flex;
  justify-content: flex-end;
}

@media only screen and (min-width: 768px){
  body{
    font-size: 2.6rem;
  }

  .whole-window{
    height: 100vh;
    padding: 3rem 4rem;
  }

  .whole-window p{
    margin-bottom: 3rem;
  }

  .mobile-only{
    display: none;
  }

  .desktop-only{
    display: initial;
  }

  .logos{
    padding: 1rem 2rem;
  }

  .logos img{
    height: 40px;
  }
}