<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container {
    width: 1170px;
    max-width: 100%;
    padding: 0 5px;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#landing {
    background-color: #fff;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    max-width: 100%;
    display: block;
}

#logo {
    margin-bottom: 20px;
}

#logo img {
    width: 200px;
}

#websites {
    display: flex;
    justify-content: space-between;

    align-items: center;
}

#websites div {
    position: relative;
    padding: 0 20px;
}

#websites div::after {
    /* content: ''; */
    position: absolute;
    background: #A6A6A6;
    display: block;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
}

#websites div:last-child::after {
    display: none;
}

h2 {
    color: #A6A6A6;
    transition: color 400ms ease-in-out;
    text-decoration: none;
    font-weight: 400;
}

.web img {
    margin: auto;
}

.web a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
}

.web:hover h2 {
    color: #fff;
    opacity: 0;
}

.web:hover a {
    opacity: 1;
}

#mail {
    margin-top: 40px;
}

#mail a {
    text-decoration: none;
    color: #A6A6A6;
}

@media (max-width: 992px) {
    #websites {
        flex-direction: column;
    }

    #websites div::after {
        display: none;
    }

    #websites div {
        margin: 10px 0;
    }

    h2 {
        margin: 0;
    }
}</pre></body></html>