@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --teal: #1E6C93;
    --pink: #E76B67;
    --text: #ffffff;
    --bg: #826c7d;
    --black: #000000;
    --dark-gray: #1e1e1e;
}
* {
    font-family: 'Lexend', sans-serif;
}
body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--bg);
}
.tc {
    top: 42%;
    transition: top 0.5s ease;
}
.teal {
    background-color: var(--teal);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
    z-index: 3;
    transition: all 0.5s ease;
    background-image: url(ft3.webp);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center center;
}
.tealtext {
    position: relative;
    left: 50%;
    color: var(--text);
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 4;
    margin: 50px 0;
}
.tealbutton {
    border-width: 0;
    border-style: solid;
    border-radius: 200px;
    padding: 10px 10px;
    background-color: var(--teal);
    color: var(--text);
    font-size: x-large;
    margin: 10px;
    transition: color 0.1s ease;
    transition: background-color 0.1s ease
}
.tealbutton:hover {
    color: var(--teal);
    background-color: var(--text);
}
.tealbutton:active {
    background-color: var(--black);
}
.pink {
    background-color: var(--pink);
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.5s ease;
    background-image: url(fp3.webp);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center center;
}
.pinktext {
    position: relative;
    left: 50%;
    color: var(--text);
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 50px 0;
}
.pinkbutton {
    border-width: 0;
    border-style: solid;
    border-radius: 200px;
    padding: 10px 10px;
    background-color: var(--pink);
    color: var(--text);
    font-size: x-large;
    margin: 10px;
    transition: color 0.1s ease;
    transition: background-color 0.1s ease
}
.pinkbutton:hover {
    color: var(--pink);
    background-color: var(--text);
}
.pinkbutton:active {
    background-color: var(--black);
}
p {
    margin: 0 0;
}
a {
    color: var(--text);
}
.at:active {
    color: var(--pink);
}
.ap:active {
    color: var(--teal);
}
.text {
    font-size: 35px;
    font-weight: 300;
    transition: font-size 0.5s ease;
}
.subheading {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 80px;
    transition: margin-bottom 0.5s ease, font-size 0.5s ease;
}
.heading {
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 10px;
    transition: margin-bottom 0.5s ease, font-size 0.5s ease;
}
.center {
    position: absolute;
    color: var(--black);
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    background-color: var(--text);
    padding: 20px 20px;
    border-radius: 20px;
}
.center a {
    color: var(--dark-gray);
}
.center a:visited {
    color: var(--dark-gray);
}
@media screen and (max-width: 1080px) {
    .teal {
        right: 0;
        bottom: 50%;
    }
    .subheading {
        margin-bottom: 20px;
    }
    .heading {
        margin-bottom: 5px;
    }
    .pink {
        left: 0;
        top: 50%;
    }
}
@media screen and (max-width: 580px) {
    .subheading {
        font-size: 30px;
    }
    .heading {
        font-size: 50px;
    }
}
@media screen and (max-width: 400px), (max-height: 760px) {
    .subheading {
        font-size: 25px;
    }
    .heading {
        font-size: 40px;
    }
}
@media screen and (max-width: 330px), (max-height: 340px) {
    .subheading {
        font-size: 20px;
    }
    .heading {
        font-size: 30px;
    }
}
@media screen and (max-width: 245px), (max-height: 300px) {
    .text {
        font-size: 22px;
    }
    .subheading {
        font-size: 15px;
    }
    .heading {
        font-size: 25px;
    }
}
@media screen and /*(max-width: 245px),*/ (max-height: 260px) {
    .text {
        font-size: 15px;
    }
    .subheading {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .heading {
        font-size: 15px;
        margin-bottom: 0px;
    }
}
@media screen and (max-height: 620px) {
    .tc {
        top: 25%
    }
    .text {
        font-size: 20px;
    }
}
@media screen and (max-height: 400px) {
    .tc {
        top: 15%
    }
    .subheading {
        margin-bottom: 10px;
    }
    .heading {
        margin-bottom: 2.5px;
    }
}
@media screen and (max-height: 300px) {
    .tc {
        top: 10%
    }
}