:root {
    --gradient-1: #178f3b;
    --gradient-2: #2196f3;
    --font-color: #b7b8bb;
    --primary: #2196f3;
    --dark: #121212;
    --background-color: var(--dark);
}

p, h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--font-color)
}

body {
    height: 100%;
    width: 100%;
    background-color: var(--background-color);
    overflow: hidden;
    margin: 0;
}

.root {
    overflow: hidden;
    max-height: 100vh;
    align-items: center;
    height: 100vh;
    max-width: 100vw;
    box-sizing: border-box;
    justify-content: center;
    display: flex;
    padding: 10px;
}

.root .main-container {
    padding: 20px;
    width: 100vw;
    min-height: 300px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media only screen and (min-width: 860px) {
    .root .main-container {
        margin: 5%;
    }
}

.root .main-container header {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    padding-bottom: 0;
}

.root .main-container header .socials {
    display: flex;
    gap: 10px;
}

.root .main-container header .socials img {
    filter: invert(.6);
}

.root .main-container header .socials img:hover {
    filter: invert(49%) sepia(13%) saturate(4453%) hue-rotate(174deg) brightness(99%) contrast(93%);
}


.root .main-container .inner-container {
    padding: 30px;    
    padding-top: 0;
}

.corner {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: all ease-in-out;
    position: absolute;
    z-index: -1;
}

.corner-top-left {
    top: 0;
    left: 0;
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
}

.gradient1 {
    stop-color:var(--gradient-1)
}
.gradient2 {
    stop-color:var(--gradient-2)
}