* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.body {
    margin-top: 97px;
    padding: 0;
}

.navbar {
    height: 97px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo img {
    width: 175px;
    height: 55px;
    background-size: cover;
    cursor: pointer;
}

.navlinks ul {
    list-style: none;
    display: flex;  
    gap: 52px;
}

main {
    display: flex;
    justify-content: center;
}

.navlinks li a {
    text-decoration: none;
    color: #222222;
    font-size: 16px;
}

.hero {
    padding: 50px 0;
    width: 960px;
    height: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .text h1 {
    margin-top: 250px;
    padding: 50px 0;
    font-size: 48px;
    padding: 0 0 10px;
    font-weight: lighter;
}

#first {
    font-weight: lighter;
    font-size: 24px;
    padding: 0 0 10px;
    margin: 25px 0;
}

#btn {
    height: 48px;
    width: 292px;
    border: none;
    margin-bottom: 50px;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 16px;
    background-color: #00b6d1;
    border-radius: 5px;
    cursor: pointer;
}

#btn a {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.content h3 {
    display: flex;
    align-items: center;
    font-size: 15px;
    gap: 20px;
    font-weight: 100;
    padding-top: 30px;
}

.content img {
    height: 55px;
}

.container {
    width: 800px;
    height: 950px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-content: center;
}

.box {
    height: 200px;
    width: 300px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
}

.box h3 {
    font-size: 18px;
    padding-top: 15px;
}

.box button {
    height: 32px;
    width: 127px;
    margin-top: 50px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 16px;
    color: #ffffff;
    background-color: #5cb85c;
    border-radius: 5px;
    cursor: pointer;
}

.box button:hover {
    background-color: #4cae4c;
}

.box button a {
    text-decoration: none;
    color: #ffffff;
}

.box #upper {
    margin-top: 10px;
    font-size: 10px;
}

.box #lower {
    font-size: 8px;
    padding-top: 8px;
}

@media screen and (max-width: 700px) {
    .navbar {
        flex-direction: column;
        height: auto;
        position: relative;
        padding: 20px 0;
    }

    .navlinks ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .navlinks li a {
        font-size: 18px;
        padding: 10px 0;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .navlinks ul {
        gap: 10px;
    }

    .navlinks li a {
        font-size: 16px;
        padding: 8px 0;
    }
}

@media screen and (max-width: 850px) {
    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        width: 100%;
    }

    .text h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 36px;
        text-align: center;
    }

    .text #first {
        font-size: 30px;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 10px 0;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px 10px;
    }

    .box {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
        padding: 15px;
        box-sizing: border-box;
    }

    .box h3 {
        font-size: 18px;
    }

    .box button {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    .box #upper,
    .box #lower {
        font-size: 10px;
    }
}
