@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

::selection {
    background-color: rgb(60, 120, 240);
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 32px;
}

body {
    background: black;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.first-part, .second-part, .third-part {
    display: flex;   
    width: 100%;
}

.first-part, .third-part {
    justify-content: space-between;
    background: linear-gradient(black 10%, rgb(0, 0, 15), black 90%);
}

.second-part {
    background: linear-gradient(rgb(0, 0, 30) 10%, rgb(0, 0, 15), rgb(0, 0, 30) 90%);
}

.third-part {
    padding-bottom: 10vw;
}

.second-part-content {
    padding: 0 5% 5% 5%;
}

.history-text {
    max-width: 80%;
}

.left-side, .right-side {
    padding: 0 5%;
    overflow: hidden;
}

.blue-text {
    color: rgb(60, 120, 240);
}

.presentation-text > p {
    margin-top: 4vw;
    color: white;
}