* {
    font-size: 12pt;
    line-height: 15pt;
    font-family: "Routed", Arial, Helvetica, sans-serif;
}

:root {
  --color1: #f8d4f9;
  --color2: #b64901;
}

html {
    background-color: #f4f4f4;
    width: 100vw;
    height: auto;
}

@font-face {
    font-family: "Routed";
    src: url(./routed-gothic.ttf);
}

@font-face {
    font-family: "Millionaire";
    src: url(./Millionaire-Script.otf);
}

@font-face {
    font-family: "Millionaire Italic";
    src: url(./Millionaire-Italic.otf);
}

a {
    color:var(--color2);
    text-decoration: none;
}

a:hover {
    background-color: var(--color2);
    color: #f4f4f4;
}

.title {
    font-size: 1.5rem;
    line-height: 1.5rem;
}

#page-structure {
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    width: 99vw;
    height: auto;
    color: var(--color2);
    margin: auto;
}

#two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
}

#two div {
    font-size: .8rem;
    line-height: auto;
}

#about {
    width: 25vw;
    margin: .5rem;
    padding-left: .5rem;
    position: fixed;
    display: block;
}

#about2 {
    width: 35vw;
    margin: .5rem;
    padding-left: .5rem;
    position: fixed;
    display: block;
}

#images {
    grid-column: 3 / span 3;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: -.5rem;
    overflow: hidden;
}

#images img, #images video {
    width: 100%;
    height: auto;
    object-fit: fill;
    margin: 0;
    padding: 0;
}

#circle {
    height: 3rem;
    width: 3rem;
    background-color: var(--color1);
    border-radius: 50%;
    border: 1px dashed var(--color2);
    animation: rotate 25s linear infinite;

}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 1100px) {
#about, #about2 {
    position: relative;
    width: 80vw;
    margin: auto;
    margin-bottom: 2rem;
}

#images {
    grid-column: 1 / span 3;
    position: relative;
    width: 98vw;
}

}