
:root {
    --background-color: #0F222D;
    --logo-color: #DB321A;
    --accent-color: rgb(171, 171, 186);
    --main-font: "Segoe UI", 'arial', Times, serif;
}

.links_big_div {
    margin: 5%;
    width: 90%;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}

.link_container {
    display: inline-block;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    width: 28.5%;
    height: 0;
    padding-top: 1%;
    padding-bottom: 28.5%;
    border-color: black;
    border-width: 3px;
    border-style: solid;
    border-radius: 15px;
}

.link_div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

.link_div:hover {
    text-decoration: underline;
    text-decoration-color: black;
}

.link_link {
    width: 100%;
    height: 100%;
    margin: 0;
    text-decoration: none;
}

.link_title {
    margin: 0;
    margin-top: 8px;
    font-size: 35px;
    color: black;
}

.link_img {
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.link_sub_title {
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 30px;
    color: black;
}


