/* OGÓLNE */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --white: #ffffff;
    --black: #000000;
    --off_white: #d5d5d5;
    --gray: #d4d4d4;
    --off_black: #191c23;
    --white77: #ffffff77;
    --black77: #00000077;
    --off_white77: #f6f6f677;
    --off_black77: #191c2377;
    --off_black00: #191c2300;
    --off_white00: #f6f6f600;
    --accent: #f8b132;
}

.darkmode{
    --white: #000000;
    --black: #ffffff;
    --off_white: #191c23;
    --gray: #d4d4d4;
    --off_black: #f6f6f6;
    --white77: #00000077;
    --black77: #ffffff77;
    --off_white77: #191c2377;
    --off_black77: #f6f6f677;
    --off_black00: #f6f6f600;
    --off_white00: #191c2300;
    --accent: #f8b132;
}
#top_switch{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 3rem;
    width: 3rem;
    bottom: 9vh;
    right: 1vh;
    z-index: 999;
    background-color: var(--off_black);
    border: 1px solid var(--off_black);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    cursor: pointer;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

#top_switch:hover{
    background-color: var(--off_white);
}

#top_switch svg{
    fill: var(--off_white);
    height: 4rem;
}

#top_switch:hover svg{
    fill: var(--off_black);
}

#theme_switch{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 3rem;
    width: 3rem;
    bottom: 2vh;
    right: 1vh;
    z-index: 999;
    background-color: var(--off_black);
    border: 1px solid var(--off_black);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    cursor: pointer;
}

#theme_switch:hover{
    background-color: var(--off_white);
}

#theme_switch svg{
    fill: var(--off_white);
    height: 4rem;
}

#theme_switch:hover svg{
    fill: var(--off_black);
}

#theme_switch svg:last-child{
    display: none;
}

.darkmode #theme_switch svg:first-child{
    display: none;
}

.darkmode #theme_switch svg:last-child{
    display: block;
}

.darkmode .blur{
    backdrop-filter: saturate(140%) blur(96px);
}


*{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Montserrat", sans-serif;
    padding-top: 10vh;
    /* background-image: url("resources/strona_w_budowie.png"); */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
    background-color: var(--off_white00);
    background-image: linear-gradient(var(--off_white) 0%, var(--white) 10%, var(--white) 66%, var(--off_white) 100%);
    color: var(--off_black);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

html{
    scroll-behavior: smooth;
}

p{
    padding-left: 5%;
    padding-right: 5%;
}

/* TŁO */

.dotted{
    background-image: radial-gradient(var(--off_black77) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -27.5px -27.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    pointer-events: none;
    width: 100%;
    height: 120vh;
    left: 0;
    top: 0;
    z-index: -1;
}

.blob{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 280px;
    border-radius: 100%;
    background-color: var(--off_white77);
    transition: all 450ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: -3;
    animation: pulse 3s infinite ease-in-out;
}

/* SCROLL */

*::-webkit-scrollbar{
    margin:7vh;
	height: 16px;
	width: 16px;
	padding: 5px;
}
*::-webkit-scrollbar-track{
	background-color: transparent;
    background-image: linear-gradient(var(--white), var(--off_white));
}
*::-webkit-scrollbar-thumb{
	min-height: 7vh;
	background-color: var(--off_black);
    border: 4px solid var(--white);
}
*::-webkit-scrollbar-thumb:hover{
	background-color: var(--accent);
}
*::-webkit-scrollbar-thumb:active{
	background-color: var(--accent);
}
/* BLOKADA ZAZNACZEŃ */

html{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* PRZEJŚCIA */

a, .btn{
    transition: all 300ms ease;
}

/* NAGŁÓWEK */

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
	background: var(--white77);
    border-bottom: 1px solid var(--off_black);
	width:90%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    padding: 0% 5% 0% 5%;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

header img{
    height: 3.5rem;
}

header img:last-child{
    display: none;
}

header svg{
    height: 2rem;
    font-size: 1.5rem;
    fill: var(--off_black); 
}

header a{
    text-decoration: none;
    color: transparent;
    display: flex;
}

.darkmode header img:first-child{
    display: none;
}

.darkmode header img:last-child{
    display: block;
}

/* DESKTOP NAV */

nav, .nav-links{
    display: flex;
}

nav{
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
    width: 90%;
}

.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

.nav-links a{
    color: var(--off_black);
    text-decoration: none;
    text-decoration-color: var(--off_black00);
    text-underline-offset: 0rem;
}

.nav-links a:hover{
    color: var(--off_black);
    text-decoration: underline 2px;
    text-underline-offset: 1.6rem;
    text-decoration-color: var(--off_black);
}

.nav-links .current{
    color: var(--off_black);
    text-decoration: underline 2px;
    text-underline-offset: 1.6rem;
    text-decoration-color: var(--off_black);
}

/* PORTFOLIO */

.splash{
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    background-color: var(--off_white00);
    width: 100%;
    height: 90vh;
    font-size: 1rem;
    text-align: center;
}

h1{
    font-size: 5rem;
    /* text-shadow: 2px 2px 2px rgba(255,255,255,0.2); */
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}
h2{
    font-size: 3rem;
    /* text-shadow: 2px 2px 2px rgba(255,255,255,0.2); */
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.gallery{
    display: flex;
    flex-direction: row;
    align-content: space-around;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
}

.portfolio{
    display: flex;
    flex-direction: row;
    align-content: space-around;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
}

.portfolio_element{
    display: flex;
    justify-content: center;
    background: var(--white77);
    background-image: radial-gradient(var(--white) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: -27,5px -27,5px;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    width: 100%;
    height: 70vh;
    font-size: 1rem;
    text-align: center;
    overflow: hidden;
    margin-bottom: 3%;
    border-radius: 3rem;
    border: 1px solid var(--off_black);
}

.portfolio_element video{
    object-fit: cover;
    object-position: center;
    width: 100%;
    mask:linear-gradient(
        to right,
        hsla(0, 0%, 0%, 0) 0%,
        hsla(0, 0%, 0%, 0.013) 0.15%,
        hsla(0, 0%, 0%, 0.049) 0.625%,
        hsla(0, 0%, 0%, 0.104) 1.375%,
        hsla(0, 0%, 0%, 0.175) 2.4%,
        hsla(0, 0%, 0%, 0.259) 3.65%,
        hsla(0, 0%, 0%, 0.352) 5.125%,
        hsla(0, 0%, 0%, 0.45) 6.8%,
        hsla(0, 0%, 0%, 0.55) 8.675%,
        hsla(0, 0%, 0%, 0.648) 10.7%,
        hsla(0, 0%, 0%, 0.741) 12.85%,
        hsla(0, 0%, 0%, 0.825) 15.125%,
        hsla(0, 0%, 0%, 0.896) 17.5%,
        hsla(0, 0%, 0%, 0.951) 19.95%,
        hsla(0, 0%, 0%, 0.987) 22.45%,
        hsl(0, 0%, 0%) 25%
    );
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.overview{
    width: 30%;
    float: left;
    padding: 3rem 0 3rem 3rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    color: var(--off_black);
    font-size: 2rem;
    z-index: 2;
    overflow-x: visible;
}

.divider{
    width: 100%;
    height: 30vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    margin-bottom: 3%;
    padding-left: 5%;
    padding-right: 5%;
    border-radius: 3rem;
    border: 1px solid var(--off_black);
}

.divider p{
    padding: 0;
}
.divider a{
    margin: 0;
}

table img{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    border: 1px solid var(--off_black);
    background-color: var(--off_black);
}

td{
    min-width: 100px;
    text-align: center;
}

/* GALERIA */

.gallery_element{
    display: none;
    justify-content: center;
    background: var(--off_white77);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background-size: 40px 40px;
    background-position: -27,5px -27,5px;
    width: 32.1%;
    height: auto;
    overflow: hidden;
    border-radius: 3rem;
    border: 1px solid var(--off_black);
    margin:0.5%;
}

.gallery_element video{
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.gallery_element img{
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.filter_tags{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 89%;
    height: auto;
    align-self: center;
    margin: 10vh 0;
    padding: 5.5%;
}

.filter_tags h2{
    width: 100%;
    text-align: center;
    margin-bottom: 4vh;
}

.button_filter{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white77);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--off_black);
    color: var(--off_black);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    text-align: center;
    border-radius: 999px;
    -webkit-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    -moz-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
}

.button_filter:hover{
    color: var(--off_white);
    background: var(--off_black);
    border: 1px solid var(--off_black);
    transition: all 0.3s ease;
    transform: scale(1.05) /* translate(0px,8px) */;
    -webkit-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
}

.button_filter.active{
    background: linear-gradient(-45deg, #f8b133, #f89533, #f87333, #f84b33, #f81133);
    background-size: 400% 400%;
	animation: gradient 10s ease infinite;
    color: var(--off_white);
    border: none;
}

.show2{
    display: flex;
}

/* GRADIENT TEXT*/

.gradient_text{
    background: linear-gradient(-45deg, #f8b133, #f89533, #f87333, #f84b33, #f81133);
	background-size: 200% 200%;
	animation: gradient 10s ease infinite;
    background-clip: text;
    color: transparent;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* PRZYCISKI */

.buttons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    width: 90%;
    height: auto;
    align-self: center;
}

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off_black);
    color: var(--off_white);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 2rem;
    padding: 0.5rem 5rem;
    margin: 0.5rem;
    height: 4rem;
    text-align: center;
    -webkit-box-shadow: 0px 8px 8px -8px var(--accent)00;
    -moz-box-shadow: 0px 8px 8px -8px var(--accent)00;
    box-shadow: 0px 8px 8px -8px var(--accent)00;
    margin: 1rem;
}

.button:hover{
    background: linear-gradient(-45deg, #f8b133, #f89533, #f87333, #f84b33, #f81133);
	background-size: 200% 200%;
	animation: gradient 10s ease infinite;
    transition: all 0.3s ease;
    transform: scale(1.05) /* translate(0px,8px) */;
    -webkit-box-shadow: 0px 16px 16px -8px #f8b03233;
    -moz-box-shadow: 0px 16px 16px -8px #f8b03233;
    box-shadow: 0px 16px 16px -8px #f8b03233;
}

.button_subtle{
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--off_black);
    color: var(--off_black);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 2rem;
    padding: 0.5rem 5rem;
    margin: 0.5rem;
    height: 4rem;
    text-align: center;
    border-radius: 999px;
    -webkit-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    -moz-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
}

.button_subtle:hover{
    background: var(--off_black);
    color: var(--off_white);
    transition: all 0.3s ease;
    transform: scale(1.05) /* translate(0px,8px) */;
    -webkit-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
}

.button_dark{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white77);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--off_black);
    color: var(--off_black);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 2rem;
    padding: 0.5rem 5rem;
    margin: 0.5rem;
    height: 4rem;
    text-align: center;
    -webkit-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    -moz-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
}

.button_dark:hover{
    background: var(--off_black);
    color: var(--off_white);
    transition: all 0.3s ease;
    transform: scale(1.05) /* translate(0px,8px) */;
    -webkit-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
}

.button_link{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white77);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--off_black);
    color: var(--off_black);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 2rem;
    padding: 0.5rem 5rem;
    margin: 0.5rem;
    height: 4rem;
    width: 40%;
    text-align: center;
    -webkit-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    -moz-box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
    box-shadow: 0px 8px 8px -8px rgba(66, 68, 90, 0);
}

.button_link:hover{
    background: var(--off_black);
    color: var(--off_white);
    transition: all 0.3s ease;
    transform: scale(1.05) /* translate(0px,8px) */;
    -webkit-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    -moz-box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
    box-shadow: 0px 16px 16px -8px rgba(66, 68, 90, 0.2);
}

.button_circle{
    padding: 0.5rem;
    width: 4rem;
    margin: 0.5rem;
    height: 4rem;
}

.svg{
    height: 2rem;
}

.button_circle .svg path{
    fill: var(--off_black); 
}

.button_circle:hover .svg path{
    fill: var(--off_white); 
}

/* STRZAŁKI */

.strzalki{
	position: relative;
    display: inline;
	transform: translate(0%,-50%);
}

.strzalki span{
	display: block;
    margin-bottom: -12px;
	width: 24px;
	height: 24px;
	border-bottom: 1px solid var(--off_black);
	border-right: 1px solid var(--off_black);
	transform: rotate(45deg);
	animation: arrow-load 2s infinite;
}

.strzalki span:nth-child(1){
	animation-delay: -0.4s;
}

.strzalki span:nth-child(2){
	animation-delay: -0.2s;
}

@keyframes arrow-load{
	0%{
		opacity: 0;
		transform: rotate(45deg) translate(0px,0px);
	}
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(45deg) translate(16px,16px);
	}
}

/* FORMULARZ */

.project {
    border-collapse:separate; 
    border-spacing: 0rem 6rem;
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
}

table{
    border-collapse:separate; 
    border-spacing: 1rem;
    width: 100%;
}

.form{
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: center;
    align-items: stretch;
    background-color: var(--off_white00);
    width: 80%;
    padding: 0 10% 0 10%;
    height: auto;
    font-size: 1rem;
    text-align: center;
}

input[type=text],input[type=email], textarea{
	width: 100%;
	padding: 1rem;
    border: 1px solid var(--off_black);
    border-radius: 1.5rem;
	display: inline-block;
	height: auto;
	background: var(--white77);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: var(--off_black);
	box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

input[type=text]:focus, input[type=email]:focus, textarea:focus{
    border: 1px solid var(--accent);
}

textarea{
    resize: none;
}

input[type=submit]{
	width: 100%;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 1.5rem;
    display: inline-block;
	cursor: pointer;
	background-color: var(--off_black);
	color: var(--off_white);
    box-sizing: border-box;
	transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 8px 8px -8px var(--accent)00;
    -moz-box-shadow: 0px 8px 8px -8px var(--accent)00;
    box-shadow: 0px 8px 8px -8px var(--accent)00;
}
input[type=submit]:hover{
	background: linear-gradient(-45deg, #f8b133, #f89533, #f87333, #f84b33, #f81133);
    border: 1px solid transparent;
	background-size: 200% 200%;
	animation: gradient 10s ease infinite;
    transition: all 0.3s ease-in-out;
    transform: scale(1.05) /* translate(0px,8px) */;
    -webkit-box-shadow: 0px 16px 16px -8px #f8b03233;
    -moz-box-shadow: 0px 16px 16px -8px #f8b03233;
    box-shadow: 0px 16px 16px -8px #f8b03233;
}

/* STOPKA */

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5rem;
	background-color: var(--off_white00);
    border-top: 1px solid var(--off_black);
	width:90%;
    position: relative;
    left: 0;
    bottom: 0;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 15vh;
    background: var(--white77);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

footer p{
    color: var(--off_black);
    padding: 0.5rem;
}

footer a{
    color: var(--off_black);
    text-decoration: none;
}

footer a:hover{
    color: var(--accent);
    text-decoration: none;
}

footer a:visited{
    color: var(--accent);
    text-decoration: none;
}

footer a .svg path{
    fill: var(--off_black); 
}

footer a:hover .svg path{
    fill: var(--accent); 
}

/* FOR MOBILE */

@media screen and (max-width: 1200px){
    #desktop_nav{
        display: none;
    }
    #hamburger_nav{
        display: flex;
    }
    ::-webkit-scrollbar {
        display: none;
    }
    .portfolio_element{
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 1rem;
    }
    .divider{
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 1rem;
        display: flex;
        align-items: normal;
        justify-content: normal;
        align-content: normal;
        flex-wrap: wrap;
        flex-direction: column;
        padding-top: 2vh;
        padding-bottom: 2vh;
    }
    .gallery_element{
        width: 99%;
        border-radius: 1rem;
    }
    .overview{
        width: 20%;
        font-size: 1rem;
        padding: 1rem 0 1rem 1rem;
    }
    .button{
        flex-wrap: wrap;
        font-size: 1.5rem;
        padding: 0.5rem 1.5rem;
        height: 2.5rem;
    }
    .button_dark{
        flex-wrap: wrap;
        font-size: 1.5rem;
        padding: 0.5rem 1.5rem;
        height: 2.5rem;
    }
    .button_link{
        flex-wrap: wrap;
        font-size: 1.5rem;
        padding: 0.5rem 1.5rem;
        height: 2.5rem;
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
    .button_subtle{
        flex-wrap: wrap;
        font-size: 1.5rem;
        padding: 0.5rem 1.5rem;
        height: 2.5rem;
    }
    .button_circle{
        flex-wrap: wrap;
        font-size: 1.5rem;
        padding: 0.5rem 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    .svg{
        height: 1.5rem;
    }
    .dotted{
        background-position: -19.5px -19.5px;
    }
    .blur{
        mask-position: 0.5px 0.5px;
    }
    h1{
        font-size: 4rem;
    }
    h2{
        font-size: 1.5rem;
    }
    .blob{
        width: 280px;
        height: 280px;
    }
    table img{
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 1rem;
    }
}