@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Inter:wght@100;200;300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
      --ft-1: 'Roboto Condensed', sans-serif;
      --primary: #02c48d;
      --text: #263238;
      --bg: #f8f8f8;
      --light: #fff;
      --textlight: #b7b7b7;

      font-size: 62.5%;
      font-family: var(--ft-1);
}

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

body{
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
}

a{
      text-decoration: none;
}

img{
      width: 100%;
      object-fit: cover;
}

.template_fluid{
      width: 100%;
      height: 100vh;
      min-height: 98rem;
      display: grid;
      place-content: center;
}

.flex{
      display: flex;
}

.content{
      width: 80vw;
      height: auto;
      min-height: 100%;
      gap: 4rem;
      padding: 5rem 0;
      align-items: center;
}

.content_img{
      width: 60%;
      height: 100%;
}

.content_info{
      flex-direction: column;
      width: 40%;
      align-items: flex-end;
      justify-content: center;
}

.content_info h1{
      font-size: 10rem;
      line-height: 8rem;
      color: var(--primary);
}

.content_info strong{
      font-size: 3.5rem;
      margin-top: 1rem;
}

.content_info p{
      color: var(--textlight);
      font-size: 1.8rem;
      text-align: right;
      margin-top: 2rem;
      max-width: 70%;
}

.content_info.server p{
      max-width: 100%;
}

.content_info a{
      display: flex;
      margin-top: 5rem;
      background: var(--primary);
      color: var(--light);
      text-transform: uppercase;
      font-weight: 500;
      font-size: 1.6rem;
      line-height: 5rem;
      padding: 0 5rem;
}


@media screen and (max-width: 998px){

      .content{
            flex-direction: column;
            align-items: center;
      }

      .content_img,
      .content_info{
            width: 100%;
            height: auto;
            align-items: center;
      }

      .content_img{
            display: flex;
            place-content: center;
      }

      .content_img img{
            max-width: 50rem;
      }

      .content_info p{
            text-align: center;
      }
}