/* Reset and base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.container {
    display: flex;
    gap: 10px;
    height: 100vh;
    box-sizing: border-box;
}

.content {
    padding: 0px 25px;
    width: 100%;
    margin-left: 275px;
    min-height: 100vh;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .content {
        margin-left: 0;
        padding: 0px 15px;
    }
}

.icon-img {
    filter: invert(29%) sepia(83%) saturate(1680%) hue-rotate(183deg) brightness(60%) contrast(120%) !important;
}