#AllLaunches{
    width: 100%;
    margin-top: 100px;
}
#AllLaunches div{
    width: 100%;
    background-color: #111;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#AllLaunches div h2{
    font-size: 50px;
    margin-top: 50px;
    margin-left: 30px;
    padding-top: 15px;

}
#AllLaunches div #LaunchContent{
    width: 100%;
    height: 250px;
    display: flex;
    border-bottom: 1px #999 solid;
    padding-bottom: 20px;
}
#AllLaunches div #LaunchContent #LaunchRockets{
    height: 200px;
    width: 700px;
    transform: translate(25px, 25px);
    background-color: #151515;
    border-radius: 10px;
    display: flex;
    padding: 10px;
    border: none;
}
#AllLaunches div #LaunchContent #LaunchRockets div{
    background-color: #151515;
    height: 180px;
    width: fit-content;
    cursor: pointer;
    margin-left: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.15s;
    border: none;
}
#AllLaunches div #LaunchContent #LaunchRockets div:hover{
    background-color: #191919;
    transition: background-color 0.2s;
}
#AllLaunches div #LaunchContent #LaunchRockets div img{
    height: 160px;
}
#AllLaunches div #LaunchContent #LaunchRockets div h5{
    width: 100%;
    text-align: center;
    user-select: none;
    font-size: 14px;
    margin-top: 6px;
}
#AllLaunches div #LaunchContent #LaunchRockets div div{
    height: 12px;
    width: 12px;
    background-color: red;
    position: absolute;
    border-radius: 20px;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
}
#AllLaunches div #LaunchContent #LaunchRockets div div:hover{
    background-color: red;
}
#AllLaunches div #LaunchContent ul{
    width: 242px;
    list-style: none;
    padding: 0;
}
#AllLaunches div #LaunchContent ul li{
    height: 20px;
    margin-top: 5px;
    display: flex;
}
#AllLaunches div #LaunchContent ul li p{
    padding-left: 5px;
    padding-right: 5px;
    width: 40%;
    font-size: 15px;
}
#AllLaunches div #LaunchContent ul li .Right{
    width: 60%;
    text-align: right;
}
#AllLaunches div #LaunchContent #LaunchInfo{
    margin-left: 55px;
}
#BlackBK{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    display: none;
    cursor: pointer;
}
#SpecificLaunch{
    width: 800px;
    height: fit-content;
    background-color: #111;
    position: absolute;
    top: 200px;
    left: 50vw;
    z-index: 100;
    transform: translate(-50%);
    display: none;
    border-radius: 10px;
}
#SpecificLaunch #left{
    width: 300px;
    top: 0;
    left: 0;
    padding-bottom: 50px;
}
#SpecificLaunch #right{
    width: 500px;
    top: 0;
    right: 0;
    padding-bottom: 50px;
}
#SpecificLaunch #left #SpecLaunchRocket{
    height: 400px;
    padding: 20px;
    transform: translate(-50%);
    margin-left: 50%;
    margin-top: 20px;
    background-color: #0d0d0d;
    border-radius: 10px;
}
#SpecificLaunch #right h2{
    font-size: 50px;
    margin-top: 20px;
    margin-left: 10px;
    user-select: none;
}
#SpecificLaunch #right #MainLaunchInfo{
    height: 20px;
    width: 400px;
    margin-left: 20px;
    display: flex;
}
#SpecificLaunch #right #MainLaunchInfo p{
    font-size: 18px;
    margin-right: 8px;
    user-select: none;
}
#SpecificLaunch #right #MainLaunchInfo .Dot{
    transform: translate(0, -5px);
}
#SpecificLaunch #right .LaunchParagraph{
    width: 400px;
    margin-left: 50px;
    margin-top: 20px;
}
#SpecificLaunch #right .LaunchParagraph p{
    text-indent: 20px;
    padding: 10px;
}
#SpecificLaunch #right #LaunchDataTable{
    width: 400px;
    transform: translate(-50%);
    margin-left: 50%;
    margin-top: 20px;
    padding: 0;
    list-style: none;
    background-color: #0d0d0d;
    border-radius: 10px;
    padding: 15px;
}
#SpecificLaunch #right #LaunchDataTable li{
    height: 15px;
    width: 100%;
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
}
#SpecificLaunch #right #LaunchDataTable li .DataLeft{
    width: 30%;
    font-size: 15px;
    padding-left: 10px;
}
#SpecificLaunch #right #LaunchDataTable li .DataRight{
    width: 70%;
    font-size: 15px;
    text-align: right;
    padding-right: 10px;
}
#SpecLaunchResultColor{
    height: 15px;
    width: 15px;
    background-color: red;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 20px;
}