@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

html, body
{
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
}

h1 { color: #e9ecef;
}

p
{
    line-height: 1.8;
}

a
{
    text-decoration: none;
    color: #FFFFFF;
	font-weight: 700;
}

.ContactBar
{
    display: flex; flex-flow: row nowrap;
    position: fixed;
    width: 100%;
    height: 5%;
    align-items: center;
    justify-content: space-around;
    top:0;
    background-color: #5A5A5A;
    color: #2A2A2A;
    z-index: 99;
    opacity: 0.9;
    margin-bottom: 2vw;
}

.Header
{
    margin-top: 5vw;
	font-size: 1.5rem;
}

.CircleContainer
{
    display: flex; flex-flow: column nowrap;
    position: relative;
    min-width: 50vw;
    min-height: 20vw;
    align-items: center;
    justify-content: center;
    margin: 5vw;
    color: #FFFFFF;
    #border: 2px outset #FFFFFF;
    #background-color: #FFFFFF;
    z-index: 50;
}
.CircleOne, .CircleTwo, .CircleThree
{
    display: flex; flex-flow: column nowrap;
	font-weight: 700;
	font-size: 1.5rem;
    position: absolute;
    aspect-ratio: 1/1;
    width: 20vw;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.8;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.CircleOne:hover, .CircleTwo:hover, .CircleThree:hover
{
    transform: translateX(var(--offsetX)) scale(1.1);
    #transition: transform 0.3s ease;
    box-shadow: 0 4px 8px #FFFFFF;
    z-index: 8;
}

.CircleOne
{
    --offsetX: 110%;
    transform: translateX(var(--offsetX));
    z-index: 6;
}
.CircleTwo
{
    background-color: #1A1A1A;
    --offsetX: 0%;
    z-index: 4;
}
.CircleThree
{
    background: linear-gradient(135deg, #3A3A3A, #1A1A1A);
    --offsetX: -110%;
    transform: translateX(var(--offsetX));
    z-index: 2;
}

.ImageContainer
{
    display: flex; flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.ImageContainer img
{
    width: 40%;
    height: 40%;
    object-fit: cover;
    margin: 1vw;
    border-radius: 2rem;
}

.Container
{
    display: flex; flex-flow: column nowrap;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    background:
        radial-gradient(circle at 70% 25%, rgba(106, 76, 147, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(76, 53, 117, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 65% 35%, #3d2a5c 0%, #2a1b3d 15%, #1a0b2e 35%, #0f051a 100%);
    min-height: 100vh;
    color: #FFFFFF;
    padding-top: 5%;
    #padding-bottom: 30vw;
}

