@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300&display=swap');

html {
    font-size: 62.5%;
}

body {
    background-color: #333;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #333;
    -webkit-tap-highlight-color: #383838;
    z-index: 100;
    font-size: larger;
}

main {
    overflow: hidden;
    margin: 5px;
}

.unstyled-link {
    color: White;
    text-decoration: none;
    text-align: center;
}

.container {
    margin: 4px;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
}

.menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0px;
}

.menu a {
    color: White;
    text-decoration: none;
    text-align: center;
    padding: 9px;
}

.menu a:active,
.menu a:hover {
    background-color: #383838;
    border-radius: 25px
}

#void {
    height: 45px;
    background-color: #333;
    top: 0;
    left: 0;
    z-index: -100;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pensum-card {
    background-color: #383838;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    margin: 8px;
    max-width: 400px;
    padding: 20px;
    overflow: hidden;
}

.pensum-card h2 {
    font-size: 1.5em;
    margin: 0;
    border-bottom: #fff 1px solid;
    margin-bottom: 10px;
}

.card {
    width: 260px;
    height: 420px;
    background-color: #333;
    border-radius: 25px;
    margin: 10px;
    box-shadow: 0px 0px 10px #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

#personal-card {
    background-color: #333;
    border-radius: 25px;
    padding: 10px;
    margin: 15px;
    margin-top: 30px;
    box-shadow: 0px 0px 10px #000;
    height: 310px;
    width: 200px;
}

.card-image {
    width: 100%;
    border-radius: 25px;
}


#console {
    font-family: 'Inconsolata', monospace;
    color: #fff;
    font-size: 1.4rem;
    background-color: black;
    background-image: radial-gradient(rgba(0, 150, 0, 0.75), black 120%);
}

#personal-card p {
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
}

.go-back-arrow {
    width: 120px;
    height: 30px;
    background-color: #383838;
    border-radius: 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    margin: 15px;
    padding: 5px;
    box-shadow: 0px 0px 10px #000;
    cursor: pointer;
}

.article-section {
    margin: 15px;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 5px 5px 15px 5px #000;
    font-size: x-large;
}