@font-face {
    font-family: Poppins;
    src: url(Poppins-Black.ttf);
}

@font-face {
    font-family: Poppins-thin;
    src: url(Poppins-Regular.ttf);
}

    {
    margin: 0;
    padding: 110;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(rgb(32, 32, 32), rgb(88, 88, 88), rgb(48, 48, 48));
    border-style: solid;
    border-color: #ffffff;
    border-width: 4px;

}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: -25px 20px 0 20px;
}

.container .heading {
    width: 50%;
    padding-bottom: 0;
    color: #ffffff;

}

.container .heading .header-image .logo {
    background-image: url(logo-no-background.png);
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    size: 150px;

}

.container .heading h3 {
    font-size: 4em;
    font-weight: bolder;
    border-bottom: 4px solid #ffffff;

    padding-bottom: 15px;
    font-family: Poppins;

}

.container .heading h3 span {
    font-weight: 100;
    font-family: Poppins;

}

.container .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.container .box .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    width: 100%;
}

@media (max-width: 1024px) {
  .container .box .images {
    grid-template-columns: 1fr;
  }
}

.container .box .images a {
    display: block;
}

.container .box .images img {
    width: 100%;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    display: block;
    transition: 0.25s
}

img:hover {
    opacity: 65%;

}

.container {
    position: relative;
    min-height: 100vh;
}

.box {

}

.footer {
    width: 100%;
    color: #ffffff;
    font-family: Poppins-thin;
    font-size: 18px;
    margin: 20px 0px ;
    text-align: center;

}

.footer a {
    color: #ffffff;
    font-family: Poppins-thin;
    text-decoration: underline;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding: 0 3px;

}


a:hover {
    color: rgb(0, 102, 255);
    text-decoration: underline;
}



html {
    scrollbar-width: large;
    scrollbar-color: #777 #555;
    border-radius: 40px;
}

html::-webkit-scrollbar {
    width: .8vw;
}

html::-webkit-scrollbar-thumb {
    background-color: #7775;
    border-radius: 40px;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}

html::-webkit-scrollbar-track {
    background-color: #5555;
}

html::-webkit-scrollbar-track:hover {
    background-color: #555;
}