body {
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
}

body::-webkit-scrollbar {
    width: 0;
}

a {
    text-decoration: none;
}

.header {
    background-color: #C1B6EC;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 0 10px #000000;
}

#title {
    margin: 0;
    color: #000000;
}

.dot-conteiner {
    width: 30%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dot {
    font-size: 20px;
    margin: 0;
    color: #000000;
    transition: 0.2s;
}

.dot:hover {
    transform: scale(1.2);
}

#dot-selected {
    text-decoration: underline;
}

.content {
    width: 100%;
}

.content {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.box {
    width: 400px;
    background-color: #58A178;
    height: 300px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000000;
    transition: 0.2s;
    text-align: center;
}

.box:hover {
    transform: scale(1.1);
}

.text {
    height: 200px;
    width: 100%;
    overflow: auto;
}

.text-title {
    margin: 0;
}

.text-content {
    margin-bottom: 30px;
    margin-top: 0;
}

.text::-webkit-scrollbar {
    width: 5px;
}

.text::-webkit-scrollbar-track {
    background-color: none;
}

.text::-webkit-scrollbar-thumb {
    background: #447a5b;
    border-radius: 10px;
}