@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-color: #313131;
    position: relative;
}

.text {
    font-size: 85px;
    font-weight: 500;
    color: #e2e2e2;
    width: 80%;
    text-align: center;
    word-wrap: break-word;
}

.words {
    font-size: 65px;
    font-weight: 500;
    color: #e21d2a;
    width: 80%;
    text-align: center;
    word-wrap: break-word;
    position: absolute;
    top: 200px;
}

.sidebar {
    width: 16%;
    height: 100vh;
    background-color: #525252;
    position: absolute;
    left: -16%;
    border-right: 5px solid #414141;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: 0.1s linear;
    box-shadow: 0 0 30px #222222;
}

.sidebar-text {
    font-size: 24px;
    width: 35%;
    text-align: left;
    font-weight: 500;
    color: #e2e2e2;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #e2e2e2;
    background-color: #414141;
    border: 3px solid #e2e2e2;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    border-radius: 30%;
    transition: 0.2s ease;
    cursor: pointer;
}

.sidebar-btn:hover {
    transform: scale(0.94);
    color: #414141;
    border-color: #414141;
    background-color: #e2e2e2;
}

.sidebar-active {
    left: 0;
}

.guide {
    height: 550px;
    width: 900px;
    background-color: #525252;
    border-radius: 20px;
    border: 4px solid #414141;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: scale(0);
    visibility: hidden;
    box-shadow: 0 0 30px #222222;
}

.guide-header {
    color: #e2e2e2;
    font-size: 45px;
    text-align: center;
    margin: 20px 0px 10px 0px;
}

.guide-text1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.guide-text-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    row-gap: 15px;
    margin-bottom: 20px;
}

.guide-text {
    color: #e2e2e2;
    text-align: left;
    font-size: 22px;
}

.guide-text2 {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

.guide-red-text {
    color: #eb1423;
}

.guide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #e2e2e2;
    background-color: #414141;
    border: 3px solid #e2e2e2;
    position: absolute;
    right: 20px;
    top: 110px;
    font-size: 30px;
    border-radius: 30%;
    transition: 0.2s ease;
    cursor: pointer;
}

.guide-btn:hover {
    transform: scale(0.94);
    color: #414141;
    border-color: #414141;
    background-color: #e2e2e2;
}

.guide-active {
    visibility: visible;
    transform: scale(1);
    transition: 0.5s ease;
}

.guide-close {
    transform: scale(0);
    transition: 0.5s ease;
}