@import url("https://fonts.googleapis.com/css2?fanily=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

section h2 {
    font-size: 6rem;
    color: #fff;
    font-weight: 500;
}

.box {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
}

.box h2 {
    font-size: 3em;
}

.box .logo {
    min-width: 300px;
}

.box2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    background: #000;
}

.box2 h2 {
    font-size: 3em;
    color: #fff;
}