﻿body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    Font-family: "Public Sans", sans-serif;
    background-color: #e8e8e8;
}

.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: 3rem;
}

.logo {
    width: 9rem;
}

.right-arrow {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0 1rem;
    border-radius: 3rem;
    border: 0.4rem solid #e5e5e5;
}

.arrow {
    border-radius: 10rem;
    background-color: #33c1a5;
    width: 1.1rem;
    padding: 0.3rem;
}

.right-arrow2 {
    background-color: #ffffff95;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0 1rem;
    border-radius: 3rem;
    border: 0.4rem solid #e5e5e5;
}

.arrow2 {
    border-radius: 10rem;
    background-color: #ff4f4f;
    width: 1.1rem;
    padding: 0.3rem;
}

a {
    text-decoration: none;
}

.right-container {
    display: flex;
}

.redirect-link {
    padding-left: 0.5rem;
    color: #33c1a4;
}


.redirect-link2 {
    padding-left: 0.5rem;
    color: #838383;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.header {
    background-color: #e8e8e8;
    width: 100%;
}

.path-index {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}

    .path-index p {
        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .path-index a:hover {
        letter-spacing: 1px;
        font-weight: 600;
    }

    .path-index a:hover {
        color: #33c1a5;
    }

.header h1 {
    font-size: 4.5rem;
    margin: 0;
}

.title-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0.6rem;
    padding-bottom: 2rem;
}

    .title-page h1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.main-content {
    background-color: #fff;
    border-radius: 1rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
}

.section-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    align-items: start;
}

ul {
    list-style: none;
    padding: 1rem 1rem 1rem 1rem;
    width: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-box {
    padding: 2rem;
    word-break:break-word;
}

    .main-box:hover {
        padding: 3rem;
    }

    .main-box li {
        padding: 0.4rem;
    }

li p {
    float: right;
    text-align: start;
    display: block;
    float: left;
    width: 100%;
}

a:hover {
    cursor: pointer;
}

.right-arrow:hover {
    border: 0.4rem solid #33c1a5;
}

.right-arrow2:hover {
    border: 0.4rem solid #d9d9d9;
    color: #fff;
}


.title-page:hover {
    color: #33c1a5;
    text-shadow: 2px 3px 16px black;
}

.left-box {
    padding: 2rem;
    background-color: #fff;
    border-radius: 1rem;
}

.redirect-box a {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    text-decoration: none;
    color: black;
}

.cookies {
    background-color: black;
    padding: 1rem;
    border-radius: 1rem;
    width: 1.5rem;
}

.redirect-box:hover {
    padding: 1rem;
    text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
    ul {
        width: 40rem;
    }

    .title-page h1 {
        font-size: 4rem;
    }

    .section-content {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    ul {
        width: 30rem;
    }

    .title-page h1 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .right-container {
        display: flex;
        flex-direction: column;
    }

    ul {
        width: 15rem;
    }

    .title-page h1 {
        font-size: 2rem;
    }
}
