@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Montserrat;
}

body {
    height: 100vh;
    background-color: #172024;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.youTubeLink img {
    height: 100px;
    position: absolute;
    top: 430px;
    left: 50vw;
    transform: translate(-50%, -50%);

}

img {
    height: 600px; 
}

@media (max-width: 1000px) {

    img {
        height: 400px;
    }

    .youTubeLink img {
        height: 50px;
        top: 270px;
    }

}