<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

@import url('css2.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body {
    max-width: 100vw;
    overflow: hidden scroll;
    position: relative;
}
.dark-bg {
    background: #2c3e50;
}
.base-bg {
    background: #e74c3c;
}
.white-bg {
    background: #ffffff;
}
.dark-color {
    color: #2c3e50;
}
.base-color {
    color: #e74c3c;
}
.white-color {
    color: #ffffff;
}



/* Hero Section */
.top-heading {
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-heading h2 {
    font-size: 35px;
    color: #fff;
    text-transform: capitalize;
}
.wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e3e3e3 !important;
}
@media all and (max-width: 993px) {
    .wrapper {
        height: auto;
        padding: 50px 0;
    }
}
.wrapper h1 {
    font-size: 35px;
    color: #e74c3c;
}
.wrapper &gt; ul {
    list-style: none;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 15px;
}
.wrapper &gt; ul &gt; li {
    margin: 2px;
}
.wrapper &gt; ul &gt; li &gt; a {
    color: #202020;
    font-weight: 600;
    display: block;
    text-decoration: none;
    border-radius: 3px;
    text-transform: capitalize;
    border: 3px solid #202020;
}
.wrapper &gt; ul &gt; li &gt; a &gt; img {
    width: 250px;
}
@media all and (max-width: 1270px){
    .wrapper &gt; ul {
        width: 100%;
    }
    .wrapper &gt; ul &gt; li {
        width: 20%;
    }
    .wrapper &gt; ul &gt; li &gt; a &gt; img {
        width: 100%;
    }
}
@media all and (max-width: 993px){
    .wrapper &gt; ul {
        flex-direction: column;
    }
    .wrapper &gt; ul &gt; li {
        width: 100%;
    }
    .wrapper &gt; ul &gt; li &gt; a {
        display: flex;
        justify-content: center;
    }
    .wrapper &gt; ul &gt; li &gt; a &gt; img {
        width: 250px;
    }
}
.demo-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.demo-wrapper .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 0;
    text-align: center;
}
.demo-wrapper .container h1 {
    font-size: 35px;
    margin-bottom: 15px;
}</pre></body></html>