* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100vw;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Azeret Mono", monospace;
}

body {
    /* background: url("bg-photo.jpg") no-repeat center center fixed; */
    background-size: cover;
    background-color: #293d2d;
    font-family: "Azeret Mono", monospace;
}

.flex-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 80%;
    color: #e3d5d2;
    margin-top: -50px;
}

.flex-items:nth-child(1) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: center;
    order: 1;
}

.flex-items:nth-child(2) {
    display: flex;
    flex-grow: 2;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 2;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    flex-wrap: nowrap;
    padding: 5%;
}

.flex-items:nth-child(3) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 3;
}

.jimmy {
    width: 42vw;
}
.linksocial {
    color: #e3d5d2;
    text-decoration: none;
    writing-mode: revert-layer;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    font-size: 0.8rem;
    letter-spacing: 0.5rem;
}
.f-direction-cr {
    flex-direction: column-reverse;
}
.f-direction-c {
    flex-direction: column;
}
.rotate270 {
    transform: rotate(270deg);
}
.textosocial {
    inline-size: fit-content;
    transform: rotate(-180deg);
    writing-mode: vertical-lr;
    padding: 30px 0px;
    text-transform: uppercase;
}

.textosocial:hover {
    color: #f7f7f7;
    text-decoration: underline;
}

.iconesocial {
    width: 16px;
}

@media (max-width: 768px) {
    .jimmy {
        width: 60vw;
    }
    .linksocial {
        font-size: 0.5rem;
    }

    .flex-items:nth-child(2) {
        padding: 20%;
    }
}
