body {
    color: yellow;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
}

a {
    color: yellow;
    display:inline-block;
    border-bottom:1px dotted yellow;
    padding-bottom:2px;
    text-decoration: none;
}

.logo {
    width: 100%;
    text-align: center;
}

.sublogo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 2rem;
}

.item-wrapper {
    display: flex;
    max-width: 666px;
    font-size: 1.2rem;
    justify-content: space-between;
}

.item {
    padding: 0 0.8rem;
}

.box-wrapper {
    display: flex;
    align-items: center;
    width : 100%;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info {
    color: black;
    background-color: yellow;
    font-size: 0.8rem;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 4px 3px 2px 1px rgba(0, 0, 0, 0.2);
}

.title {
    font-weight: 800;
    font-size: 0.9rem;
}

.pic {
    display: flex;
    margin: 20px;
    border: 0.1rem solid yellow;
    justify-content: center;
    width: fit-content;
    border-radius: 8px;
}

.pic-img {
    padding: 10px;
    max-width: 500px;
}

.contact {
    align-items: flex-start;
    padding: 2rem;
    border-width: 1px 10px;
    border-color: yellow;

}

.c-item {
    font-size: 16px;
    padding: 10px;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-bottom: 1px solid yellow;
    margin: 1em 0;
    padding: 20px;
}

.licence {
    width: 100%;
    text-align: right;
}

@media (min-width: 1600px) {
    .box {
        width: 33.333%;
    }
}

@media (max-width: 1600px) {

    .box-wrapper {
        flex-direction: column;
    }

    .pic-wrapper {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .box {
        width: 90%;
    }

    .contact {
        width: 50%;
        padding-left: 100px;
    }
}

@media (max-width: 666px) {
    .item-wrapper {
        flex-direction: column;
    }

    .item {
        text-align: center;
        padding-bottom: 10px;
    }
}

@media (max-width: 580px) {
    .pic-wrapper {
        width: 100%;
    }

    .pic-img {
        width: 95%;
    }

    .contact {
        padding-left: 10%;
        width: 85%;
    }
}