body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

ion-icon {
    font-size: 32px;
}


nav {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    margin-left: 20px;
    margin-right: 20px;
}

#links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#links > a {
    color: #000000;
    text-decoration: none;
}

#links > a:hover {
    text-decoration: underline;
}

#buttons > a > button {
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    transition: color 0.5s, background-color 0.5s;
}

#buttons > a > button:hover {
    color: #ffffff;
    background-color: #000000;
}

header {
    width: 100%;
    height: auto;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

#link-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px;
    margin-left: 100px;
}

#link-buttons button {
    border: 1px solid #000000;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    transition: color 0.5s, background-color 0.5s;
}

#link-buttons button:hover {
    background: #000000;
    color: #ffffff;
}

#title {
    margin: 50px;
    line-height: 0.5;
}

.desc-title {
    margin: 50px;
    margin-left: 110px;
    line-height: 0.9;
}


#main-title {
    font-weight: bolder;
    font-size: 3em;
    width: 550px;
    margin: 50px;
}

#main-desc {
    width: 700px;
    margin: 50px;
}

.main-content {
    margin: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.content-head1 {
    font-weight: bold;
    font-size: 22px;
}

.content {
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 20px;
    width: auto;
    max-width: 350px;
    transition: color 0.5s, background-color 0.5s;
    cursor: pointer;
}

.content1 {
    line-height: 1.2;
}

.content:hover {
    border: 1px solid #ffffff;
    background-color: #000000;
    color: #ffffff;
}

#hamburger {
    display: none;
}

#links a {
    display: block;
}

footer {
    width: 100%;
    height: auto;
    border-top: 1px solid #000000;
    text-align: center;
}


@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    #link-buttons {
        margin: 15px;
        margin-left: 30px;
    }
    .desc-title {
        margin: 12px;
        line-height: 1.4;
    }
    .desc-title h1 {
        line-height: 1.2;
    }
    #title {
        margin-left: 7px;
        line-height: 0.5
    }
    #main-desc {
        width: 300px;
        line-height: 1.6;
    }
}