@font-face {
    font-family: "Windows Regular";
    font-style: normal;
    font-weight: 0;
    src: url(/fonts/WindowsRegular.ttf) format("truetype");
}
.marquee {
    overflow: hidden;
    position: relative;
}

.marquee div {
    display: block;
    width: 360%;
    height: 30px;
    position: absolute;
    overflow: hidden;
    animation: marquee 10s linear infinite;
}

.marquee span {
    float: left;
    width: 50%;
}

@keyframes marquee {
    0% {
        left: 0;
    }
    100% {
        left: -180%;
    }
}

body {
    background-color: hsl(250, 23%, 5%);
    background-image: url(images/tiles.png);
    margin: 0;
    padding: 0;
}
.header {
    background-color: #f2bc05;
    height: 80px;
    width: inherit;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px 20px 0px 0px;
}
.text {
    background-color: rgb(79, 118, 164);
    text-align: center;
}
.content {
    background-color: rgb(242, 248, 255);
    text-align: center;
    margin-bottom: 5px;
    padding: 2.5px;
}
p {
 text-indent: 15px;
 padding: 2.5px
}
hr{
 border: dashed 0.5px #f2bc05;
}
.mainfont {
    font-family: "Windows Regular";
    font-size: 15px;
    text-align: left;
}

.sidebar {
    height: 100px;
    width: 175px;
    position: absolute;
    margin-top: -655px;
    margin-left: 1270px;
    padding: 5px;
    z-index: 5;
}
.sidebarfont {
    font-family: "Windows Regular";
    font-size: 17px;
    text-align: left;
    padding: 5px;
}
.column {
    display: inline-block;
    width: 49%;
    text-align: center;
    overflow: auto;
    height: max-content;
}