/*
Project: Agonova
Author: Antonino Loggia and Co.
Version: 1.0.0
Description: Agonova is a leading technology and service provider that helps businesses and startups increase revenue by building, enhancing, and scaling their digital presence.

Copyright (c) 2025 Agonova. All rights reserved.

License: This file and its contents are the exclusive property of Agonova. 
Reproduction, distribution, modification, or use of this file in any form 
without prior written permission from Agonova is strictly prohibited.
Unauthorized use may result in legal action.
*/

@import url('components/header.css');
@import url('components/tiles.css');
@import url('components/buttons.css');
@import url('components/forms.css');
@import url('components/carousell.css');
@import url('components/footer.css');
@import url('components/blog.css');
@import url('components/post.css');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures consistent sizing for all elements */
}

h1, h2, h3, h4, h5, h6, p, span {
    font-family: "DM Sans", serif;
    color: #231F20;
}

p, span {
    font-family: "DM Sans", serif;
    color: #231F20;
}

body {
    font-family: "DM Sans", serif;
}

a, a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
    color: black;
}

/* Default visibility */
.desktop-version {
    display: block; /* Visible by default */
  }
  
  .mobile-version {
    display: none; /* Hidden by default */
  }
  
  /* Media Query for Mobile Screens */
  @media (max-width: 768px) {
    .desktop-version {
      display: none; /* Hide desktop content */
    }
  
    .mobile-version {
      display: block; /* Show mobile content */
    }
  }
  

