body {
    padding: 0;
    font-family: "Geologica", sans-serif;
}

header {
    width: 100%;
}

footer {
    width: 100%;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tools_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 40px 0;
}

.tool {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 200px;
    color: white;
    user-select: none;
    transition: 300ms;
    margin: 10px;
    position: relative;
    box-shadow: 0 4px 10px 0 #ccc;
    border-radius: 30px;
}
.tool:hover {
    margin: 0;
    width: 320px;
    height: 220px;
}

.tile_background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    padding: 20px;
    border-radius: 30px;
}

.tool_full_background {
    padding: 0;
}

.tool_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.tools_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.tools_header_img {
    padding: 40px 10px;
}

.tools_header_title {
    font-size: 72px;
    font-weight: 500;
    padding: 0;
}

.tools_header_title_container {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 30px;
}

.tools_header_subtitle {
    position: absolute;
    font-style: italic;
    font-size: 36px;
    right: 10px;
    bottom: -10px;
    color: #2AABEE;
    z-index: 1;
    font-weight: 500;
}

.tools_description_container {
    display: flex;
    justify-content: start;
}

.tools_description {
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    font-weight: 500;
    text-align: center;
}

.tool_description_animate {
    animation: colorChange 2s infinite alternate;
}

@keyframes colorChange {
    0% {
        color: black;
    }
    60% {
        color: #2f5fe3;
    }
    100% {
        color: black;
    }
}

@media (max-width: 980px) {
    .tools_description {
        max-width: 660px;
    }
}

@media (max-width: 660px) {
    .tools_header_title {
        font-size: 54px;
    }
    .tools_header_subtitle {
        font-size: 28px;
    }
    .tools_description {
        font-size: 24px;
        max-width: 360px;
    }
}

@media (max-width: 380px) {
    .tools_header_title {
        font-size: 36px;
    }
    .tools_header_subtitle {
        font-size: 18px;
    }
}
