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


:root {
    --dark-blue: #1F2937;
    --light-blue: #3882F6;
    --text-light: #F9FAF8;
    --text-dark: #1F2937;
}

a {text-decoration: none;color: var(--text-light);}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

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

nav {
    width: 100%;
    height: 5rem;
    color: var(--text-light);
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo, .nav-box {
    margin: 3em;
}

#logo {
    position: relative;
    font-weight: bolder;
    font-size: 2em;
    display: flex;
    cursor: pointer;
}

#logo div:nth-child(1) {
    position: absolute;
    font-size: 0.7em;
    top: -0.8em;
    left: -1.5em;
    transition: all 0.5s ease-in-out;
}

#logo div:nth-child(2) {
    color: var(--light-blue);
}

#logo div:nth-child(3) {
    position: absolute;
    font-size: 0.7em;
    bottom: -0.8em;
    right: -1.5em;
    transition: all 0.5s ease-in-out;
}

#logo:hover div:nth-child(1) {
    left: 0;
}

#logo:hover div:nth-child(3) {
    right: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2em;
}

.nav-list li {
    position: relative;
    cursor: pointer;
    font-weight: 300;
}

.nav-list li:nth-child(3) {
    background-color: var(--light-blue);
    padding: 0.5em 1em;
    border-radius: 20px;
    font-weight: 500;
}

.nav-list li:not(li:nth-child(3))::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: -5px;
    left: 0;
    background-color: var(--text-light);
    transition: all 0.3s linear;
}

.nav-list li:not(li:nth-child(3)):hover::after {
    height: 2px;
}

.nav-item.btn a{
    color: var(--text-light);
    text-decoration: none;
}
.nav-item.btn {
    transition: all 0.1s linear;
}

.nav-item.btn:hover {
    transform: scale(1.1);
}

header {
    width: 100%;
    height: 20rem;
    color: var(--text-light);
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-side , .right-side {
    margin: 0 10em;
}

header button {
    margin-top: 1em;
    border: none;
    background-color: var(--light-blue);
    color: var(--text-light);
    padding: 0.2em 1em;
    border-radius: 20px;
    cursor: pointer;
}

header button a {
    text-decoration: none;
    color: var(--text-light);
}

.left-side p {
    font-weight: 300;
}

.right-side img {
    border-radius: 40px;
    box-shadow: 10px 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease-in-out;
}

.right-side img:hover {
    transform: scale(0.97);
}

.about {
    width: 100%;
    height: 27rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10em;
    width: 100%;
    height: 10em;
    margin: 5em;
}

.info-img {
    width: 150px;
    height: 150px;
    border: 3px solid var(--light-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.info-cnt:hover {
    transform: scale(1.1);
}

.info-cnt > p {
    font-weight: 300;
    margin: 1em;
}

.quote-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20em;
    background-color: #E5E7EB;
}

.quote-box div {
    position: relative;
}

blockquote {
    font-weight: 300;
    font-size: 1.2em;
    font-style: italic;
}

.quote-box div p {
    position: absolute;
    margin: 2em;
    right: -2em;
}

.steam-box {
    width: 100%;
    height: 20em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steam-cnt {
    width: 60%;
    background-color: var(--light-blue);
    height: 60%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    color: var(--text-light);
}

footer {
    width: 100%;
    height: 3rem;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 300;
}

.left-steam p {
    font-weight: 300;
}

.left-steam h3 {
    font-size: 1.2em;
}

.right-steam {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.right-steam button {
    margin: 1em;
    border: none;
    background-color: transparent;
    border-radius: 10px;
    padding: 0.3em 1em;
    border: 2px solid var(--text-light);
    transition: all 0.3s linear;
}

.right-steam button a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.2em;
    transition: all 0.3s linear;
}

.right-steam button:hover {
    background-color: var(--text-light);
}

.right-steam button a:hover {
    color: var(--text-dark);
}