@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

html,
body {
    background-color: #121212;
    height: 100%;
    margin: 0;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

h1 {
    color: #efefef;
    margin: 0;
    margin-top: 0.5em;
}

p {
    color: #efefef;
}

a {
    color: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
}

a:link,
a:visited {
    color: #efefef;
    text-decoration: none;
}

svg {
    width: 15%;
    height: 15%;
    fill: #efefef;
}

img {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.info {
    margin-top: 2em;
    height: 20%;
    width: 33%;
    display: flex;
    flex-direction: flex-col;
}

.contact {
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.contact p {
    cursor: pointer;
}

.links {
    width: 100%;
    height: 50%;
    display: flex;
    justify-items: center;
    align-items: center;
}

.img {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 40%;
    margin-top: 1em;
    overflow: hidden;
    object-fit: cover;
}

.img img {
    width: 100%;
    height: auto;
    max-height: 200px;
}

@media (max-width: 800px) {
    .info {
        width: 100%;
        height: 25%;
    }
}
