:root {
    --my-light-blue: #b9d5f6;
    --text-light-blue: #7faadb;
    --text-dark-blue: #467bb8;

    --my-blue-shadow: rgba(127, 170, 219, 0.5);
}

@font-face {
    font-display: swap;
    font-family: 'saitamaar';
    src: url(../assets/fonts/Saitamaar-Regular.woff2);
}

html {
    font-family: 'ms gothic';
    font-size: 1.1rem;
    color: var(--text-light-blue);

    background: linear-gradient(white, #d0e2f6);
}

h1, h2 {
    font-family: 'saitamaar', 'ms gothic';
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    margin: 0;

    height: 100vh;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}


/*CLOCK*/
.clock-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    position: fixed;
    bottom: 1rem;
    right: 1rem;
}

#clock {
    font-family: 'saitamaar', 'Times New Roman', Times, serif;
    font-size: 3rem;
}


/*EXES*/
.executables-container {
    display: grid;
    grid-template-areas: 
        "nav ."
        "about ."
        "to-do guestbook"
    ;
    gap: 1rem;

    position: fixed;
    bottom: 1rem;
    left: 1rem;

    padding: 1rem;
}

.executable {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.executable img {
    width: 3rem;
    height: auto;
    transition: all ease 200ms;
}

.executable img:hover {
    transform: translateY(-5px);
}

.executable a {
    color: var(--text-light-blue);
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
}

.executable a:visited {
    color: var(--text-light-blue);
}

.executable a:hover {
    transform: translate(0);
}

#nav-exe {
    grid-area: nav;
}

#about-exe {
    grid-area: about;
}

#to-do-exe {
    grid-area: to-do;
}

#guestbook-exe {
    grid-area: guestbook;
}


/*EVERYTHING*/
.everything {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out;

    display: flex;
    gap: 1rem;
    align-items: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main, nav {
    position: relative;
    border: solid 2rem;
    border-image: url(../assets/borders/blue-window.png) 290 round;
    background-color: white;
    box-shadow: 1rem 1rem 0.5rem 0.5rem var(--my-blue-shadow);
}

main {
    display: flex;
    padding: 1rem;
}

#pastel-ink {
    width: 300px;
    height: 300px;

    border-radius: 50%;
    border: solid var(--my-light-blue) 4px;
}

.info {
    display: flex;
    flex-direction: column;

    padding-left: 2rem;
    margin: 0;

    max-width: 15rem;
}

nav {
    padding: 0;
}

ul {
    padding: 0;
    list-style: none;
}

.last-child-nav {
    margin-top: 2rem;
}


/*TO-DO LIST*/
.to-do {
    display: none;
    color: var(--text-dark-blue);
    position: absolute;

    border: solid 1.5rem;
    border-image: url(../assets/borders/notebook.png) 150 round;
    border-image-slice: fill 150;
}


@media (max-width: 600px) {
    .everything {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    main {
        display: flex;
        flex-direction: column;
    }
}