:root {
    --background-color-main: #121212;
    --color-main: #FFFFFF;
    --background-image-url: url(/assets/img/bg2.gif)
}

html {
    background: var(--background-color-main);
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    color: var(--color-main);
    cursor: crosshair;
}

body {
    margin-top: 4rem;
    min-height: 100%;
    display: block;
}

.t {
    display: inline-block;
    -webkit-clip-path: url(#cp);
    clip-path: url(#cp);
    width: 50vw;
    height: 50vw;
    max-height: 60vh;
    max-width: 60vh;
    background-size: cover;
    background-blend-mode: screen;
}

.t2 {
    display: inline-block;
    width: 50vw;
    height: 50vw;
    max-height: 60vh;
    max-width: 60vh;
    background-size: cover;
    background-blend-mode: screen;
}

.main {
    margin: 0 auto;
    width: 80%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}

.textLarge {
    font-size: 3rem;
}

.textLarge a:hover {
    color: var(--color-main);
    text-decoration: none;
}

.textMedium {
    font-size: 2rem;
}

.text {
    margin-bottom: 1rem;
}

.first {
    background-color: #C5075C;
    background-image: var(--background-image-url);
}

.second {
    background-color: #03B897;
    background-image: var(--background-image-url);
    opacity: 0.7;
    margin-left: -25%;
}

.columnMain {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.fa:hover {
    transform: scale(1.3);
    color: var(--color-main) !important;
}

i {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

a:link, a:active, a:visited, a:focus {
    color: var(--color-main);
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    color: rgba(3, 184, 151, 0.8);
    text-decoration: line-through;
    text-decoration-color: var(--color-main);
}

@media screen and (max-width: 600px) {
    .textLarge {
        font-size: 2rem;
    }

    .textMedium {
        font-size: 1rem;
    }

    i {
        margin-left: 0.35rem;
        margin-right: 0.35rem;
    }
}