*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #1c1c1c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: machomodular, sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 30px;
    color: #e5ba21;
}

a {
    text-decoration: none;
}

#logo-jk {
    width: 200px;
    height: 200px;
}

.socials img {
    width: 100px;
    height: 100px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.socials {
    border: solid 2px #e5ba21;
    border-radius: 10px;
    margin-top: 20px;
    display: grid;
    grid-row: 1fr 1fr;
}

.github:hover {
    background: rgb(28, 28, 28);
    background: linear-gradient(180deg, rgba(28, 28, 28, 1) 0%, rgba(97, 97, 97, 1) 100%);
    border-radius: 10px 10px 0px 0px;
}

.linkedin:hover {
    background: rgb(28, 28, 28);
    background: linear-gradient(0deg, rgba(28, 28, 28, 1) 0%, rgba(97, 97, 97, 1) 100%);
    border-radius: 0px 0px 10px 10px;
}
