@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 66px;
    flex: 1 0 0;
}

html {
    height: 100%;
    font-family: 'Ubuntu Mono', monospace;
    background: url("img_background.png") lightgray 0% 0% / 50px 50px no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.125rem;
    flex: 1 0 0;
}

.header {
    margin-bottom: 40px;
}

.header .logo {
    width: 200px;
    height: auto;
}

.main-content {
    display: flex;
    width: 650px;
    height: 382px;
    flex-direction: column;
    align-items: flex-start;
}

.bash-window {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.50);
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(85.5px);
    display: flex;
    width: 650px;
    height: 382px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.bash-title {
    display: flex;
    padding: 10px 16px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.05);
}

.bash-title code {
    opacity: 0.6;
    color: #FFF;
    font-family: "Ubuntu Mono";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bash-content {
    display: flex;
    padding: 16px;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
}

.bash-content code {
    text-align: left;
    opacity: 0.8;
    color: #FFF;
    font-family: "Ubuntu Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.user {
    color: #13E700;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.path {
    opacity: 0.8;
    color: #0062F4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.error {
    opacity: 0.8;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.talk {
    color: #FFF;
    font-family: "Ubuntu Mono";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    opacity: 0.8;
}

.footer {
    color: #FFF;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Apple Legacy Chevron","Helvetica Neue","Helvetica","Arial",sans-serif;
    font-size: 17px;
    font-style: thin;
    font-weight: 110;
    line-height: normal;
    opacity: 0.6;
    letter-spacing: 0.5px;
}