@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
.title {
    font-family: "Roboto";
    font-size: 4rem;
    transition: all 0.3s ease;
    display: flex;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: default;
}
.title-main {
    display: inline-block;
    transition: all 0.3s ease;
    transform-origin: center;
}
.title-main:hover {
    transform: scale(1.5);
}
.title-sub {
    display: inline-block;
    transition: all 0.3s ease;
    transform-origin: center;
    margin-top: -1rem;
}
.title-sub:hover {
    transform: scale(1.4);
}
#sub {
    font-size: 3rem;
    width: 80rem;
    height: 6rem;
    background: linear-gradient(0deg, #5e7594, #5e7594);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
    border: none;
    margin: 0 auto;
    gap: 10rem;
    cursor: default;
}
#sub a {
    font-size: 2rem;
    color: white;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: url('./assets/cu.png'), auto;
}
#sub a span {
    margin-left: 4px;
    transform: translateX(4px);
}
#sub a:hover {
    transform: scale(1.2);
    background-color: rgb(0, 146, 172);
    border-radius: 15px;

}
#topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: #5e7594;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.5);
}

.words {
    position: absolute;
    display: block;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem
}

.games {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

.gamesy {
    width: 175px;
    height: 175px;
    border-radius: 10px;
    transition: all 0.35s ease;
}

.gamesy:hover {
    transform: scale(1.1);
}

body {
    font-family: "Roboto";
    background-color: #5e7594;
    color: white;
    cursor: url('./assets/cu.png'), auto;
}