@font-face {
    font-family: 'Inter';
    font-weight: 400;
    src: url('fonts/inter-v13-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-weight: 700;
    src: url('fonts/inter-v13-latin-700.woff2') format('woff2');
}

body {
    background-color: rgb(246, 247, 248);
    font-family: 'Inter';
    margin: 0;
}

.content {
    margin-left: 328px;
    margin-right: 96px;
    margin-top: 110px;
    margin-bottom: 104px;
}

h1 {
    font-size: 61px;
    margin: 0;
}

h2 {
    font-size: 27px;
    margin-bottom: 8px;
}

h3{
    margin-bottom: 8px;
}

p{
    margin-bottom: 4px;
}

.content_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.img_boarder {
    cursor: pointer;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    right: 10%;
}

.content_header img {
    width: 32px;
    height: 32px;
}

.img_boarder:hover {
    background-color: rgb(238, 238, 238);
    border-radius: 25px;
}

body:has(.img_boarder:hover) .content_header img {
    width: 37px;
    height: 37px;
}

@media screen and (max-width: 920px) {
    header {
        display: none;
    }

    .sidebar-container {
        display: none;
    }

    .header-shadow {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-sidebar-container {
        display: flex;
    }

    .content {
        margin: 128px 16px 104px 16px;
    }
}

@media screen and (max-width: 570px) {
    h1 {
        font-size: 47px;
    }

    .img_boarder {
        position: sticky;
        right: 0%;
    }
}
#landscape-warning {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    color: white;
    font-size: 1em;
    text-align: center;
    line-height: 100vh; /* Center text vertically */
    z-index: 9999; /* Ensure it is on top */
  }
  
  /* Show the warning when needed */
  #landscape-warning.visible {
    display: flex;
    align-items: center; /* Center text vertically */
    justify-content: center; /* Center text horizontally */
  }