* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    user-select: none;
}

.header {
    position: absolute;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    top: 0;
    margin-bottom: 100px;
    background-color: black;

}

span {
    display: flex;
    font-size: 50px;
    font-family: sans-serif;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 40px;
    color: rgb(0, 255, 0);
    text-shadow: 0px 0px 40px lime;
}

.frame {
    height: 400px;
    width: 1040px;
    display: flex;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    border-radius: 10px;
}

.first-row {
    /* background-color: black; */
    height: 64px;
    width: 1000px;
    display: flex;
    flex-direction: row;
}

.keys {
    height: 60px;
    margin: 4px;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60px;
    background-color: rgb(80, 80, 83);
    border-radius: 10px;
    color: white;
    user-select: none;
    /* box-shadow: 0px 1.5px 1px lime; */

}

.backspace {
    width: 110px;
}

.second-row {
    /* background-color: black; */
    height: 64px;
    width: 1000px;
    display: flex;
    flex-direction: row;
}

.tab {
    width: 80px;
}

.slash {
    width: 100px;

}

.third-row {
    /* background-color: black; */
    height: 64px;
    width: 1000px;
    display: flex;
    flex-direction: row;
}

.caps {
    width: 120px;
}

.enter {
    width: 116px;
}

.fourth-row {
    /* background-color: black; */
    height: 64px;
    width: 1000px;
    display: flex;
    flex-direction: row;
}

.shift {
    width: 152px;
}

.fifth-row {
    /* background-color: black; */
    height: 64px;
    width: 1000px;
    display: flex;
    flex-direction: row;
}

.space {
    width: 516px;
}

.by {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-top: 10px;
    font-weight: 900;
    color: aqua;
    margin-left: 820px;
}

a {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-decoration: none;

}

.github {
    background-color: white;
    color: black;

}

.btn {
    height: 50px;
    width: 150px;
    margin-top: 10px;
    font-size: 25px;
    outline: none;
    /* background-color: transparent; */
    /* color: white; */
    border: none;
    border-radius: 10px;
    border: 2px solid white;
    transform: translateY(-20px);
    cursor: pointer;
    transition: 0.2s;

}

.youtube {
    background-color: red;
    color: white;
    border: 2px solid red;
}

.btn:hover {
    box-shadow: 0px 0px 10px lime;
}

.footer {
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: -110px;
    text-align: start;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}
