@font-face {
    font-family: 'ITC Avant Garde Gothic';
    src: url('path/to/your/fonts/itc-avant-garde-gothic-oblique.woff2') format('woff2'),
         url('path/to/your/fonts/itc-avant-garde-gothic-oblique.woff') format('woff'),
         url('path/to/your/fonts/itc-avant-garde-gothic-oblique.ttf') format('truetype');
    font-weight: normal;
    font-style: oblique;
}
*{
    transition: 0.6s ease;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-style: oblique;
    align-items: center;
    background-color: #949398FF;
}
h1{
    text-align: center;
    font-size: 70px;
    color:#F4DF4EFF;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: black;
}
.buttons,.algorithms{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    margin-bottom: 15px;
    width: fit-content;
}
.buttons, .algorithms{
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.btn{
    font-size: 25px;
    padding: 15px;
    border-radius: 40px;
    margin-left:20px;
    margin-right: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border: 2px solid black;
    background-color: #F4DF4EFF;
}
.btn-text{
    font-size: 25px;
    padding: 15px;
    border-radius: 40px;
    margin-right: 150px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border: 2px solid black;
    background-color: #F4DF4EFF;
}
.btn:hover{
    cursor: pointer;
    transform: scale(1.2);
}
.array-container {
    display: inline-flex;
    justify-content: center;
    align-items:flex-end;
    height: 650px;
    width: 100%;
    border: 5px solid #000;
    margin-top: 30px;
}
.bar {
    margin: 5px;
    background-color: #F4DF4EFF;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 12px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 5px;
    border: 1px solid black;
}
footer{
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 25px;
    margin-top: 30px;
    color:#F4DF4EFF;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
}
