@font-face {
    font-family: 'JosefinSans-BoldItalic';
    src: url('/fonts/JosefinSans-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Titillium-Regular';
    src: url('fonts/Titillium-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Titillium-Semibold';
    src: url('fonts/Titillium-Semibold.otf') format('truetype');
}

body {
    font-family: 'Merriweather', sans-serif !important;
}

@font-face {
    font-family: pentay_sans;
    src: url(https://defharo.com/tipos/Pentay-Sans-Light.woff2) format('woff2'),url(https://defharo.com/tipos/Pentay-Sans-Light.woff) format('woff'),url(https://defharo.com/tipos/pentay-sans-light-w.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility
}

#footer{
    position:fixed;
    height: 50px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index:9;
    text-align:left;
    color: #f2f2f2;
    padding: 15px 0 0 10px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-size: 1.5rem;
}
#footer{
    bottom:0px;
}

.home-button {
    left: 20px; /* Distance from the left */
    bottom: 20px; /* Distance from the bottom */
    z-index: 1000; /* Ensure it's above other elements */
}

.home-button svg {
    width: 45px; /* Adjust the size of the icon as needed */
    height: auto;
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.home-button:hover svg {
    opacity: 0.7; /* Slightly fade the icon on hover */
}

.home-button svg {
    fill: white; /* Set the color of the SVG */
}

/* Screen 1024px and lower: 2 buttons per row */
@media only screen and (max-width: 1024px) {
    .home-button svg {
        width: 30px; /* Adjust the size of the icon as needed */
    }

    #footer {
        padding: 15px 0 0 10px;
        height: 40px;
    }
}

/* Phones: 1 button per row */
@media only screen and (max-width: 768px) {
    .home-button svg {
        width: 30px; /* Adjust the size of the icon as needed */
    }
}

.myContent {
    height: 60px;
}

/* Responsive positioning for smaller screens */
@media only screen and (max-width: 768px) {
    .home-button {
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Adjust for exact centering */
    }
}

/* CONTAINERS
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container, .container-sm {
      max-width: 540px;
    }
  }
  
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1140px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

/* Fluid container */
.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.container-custom {
    display: flex;
    flex-direction: column; /* Change to column layout */
    height: 100vh;
    overflow: hidden;
}

.container-custom-2 {
    display: flex;
    flex-direction: row; /* Change to column layout */
    height: 100vh;
    overflow: hidden;
}

.ml-1 {
    margin-left: .5rem;
}

@media only screen and (max-width: 768px) {
    .container-custom {
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    .responsive-center {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .responsive-text {
        font-size: 1rem !important;
    }

    .ml-1 {
        margin-left: 1.5rem !important;
    }
}