@import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-brands/css/uicons-brands.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
body {
margin: 0;
max-width: 100vw;
font-family: "Roboto", sans-serif;
background-image: url(background.svg);
background-attachment: fixed;
background-size: cover;
background-position: right;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
}
a {
    text-decoration: none;
}
h1 {
    text-align: left;
    margin-left: 1em;
}
.mainpart p span {
  font-size: 150%;
  font-family: "Roboto Mono", monospace;
}
span::before {
  font-size: 125%;
}
.linka {
--text-opacity: 0%;
}
:before {
font-size: 2em;
vertical-align: sub;
}
.linka span {
    opacity: var(--text-opacity);
    transition: opacity 1s ease 0.15s;
    font-size: 150%;
}
.linka:hover {
    --text-opacity: 100%;
}
header {
margin-top: 10vh;
height: auto;
margin-left: 5%;
margin-right: 5%;
text-align: center;
border-radius: 0.75rem;
animation: startup 2s 1;
}
header p {
    animation: startup 2s 1;
}
.mainpart {
box-shadow: 0.1vh 0.1vh 0.75vh 0.1vh grey;
background-color: white;
border-radius: 0.75rem;
}
.mainpart div:first-child {
padding: 2.5% 2.5% 0 2.5%;
height: 95%;
width: 95%;
font-size: 125%;
}
.mainpart div:last-child {
padding-left: 1rem;
text-align: left;
padding-bottom: 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
main div {
box-shadow: 0.1vh 0.1vh 0.75vh 0.1vh grey;
background-color: white;
border-radius: 0.75rem;
--stuff-display: none;
}
main {
margin-left: 5%;
margin-right: 5%;
max-width: 90%;
text-align: center;
animation: startup 2s 1;
display: grid;
grid-template: 0.75fr repeat(2, 2fr) / repeat(3, 1fr);
gap: 1rem;
}
main div p {
  animation: startup 2s 1;
}
main h1 {
  grid-area: 1 / 1 / 2 / 4;
  text-align: bottom;
  margin-block-end: 0;
  margin-top: auto;
}
.material-symbols-outlined {
font-size: 2em;
vertical-align: -0.2em;
}
footer {
  text-align: center;
  margin-top: 5vh;
  border-top: 1px solid grey;
  background-color: black;
  color: white;
  padding-bottom: 1rem;
}
main img {
  height: 20vh;
  width: 100%;
  border-radius: inherit;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  object-fit: cover;
}
main p {
display: flex;
justify-content: center;
margin-left: 2.5%;
margin-right: 2.5%;
text-align: center;
}
main strong {
    font-size: 1.5em;
}
footer a {
  color: white;
  margin-block-end: 0;
}
@media (max-width: 900px) {
  main {
    grid-template: 1fr repeat(3, 2fr) / repeat(2, 1fr);
  }
  main h1 {
    grid-area: 1 / 1 / 2 / 3;
  }
}
@media (max-width: 500px) {
  main {
    grid-template: 1fr repeat(6, 2fr) / 1fr;
  }
  main h1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  a span {
    display: none;
  }
  h1 {
    text-align: center;
    margin-left: 0;
  }
}
@keyframes startup {
from {
opacity: 0%;
}
50% {
opacity: 0%;
transform: translateY(5vh);
}
to {
transform: translateY(0);
}
}