
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

img{
    display: inline-block;
}

body{
    background-color: black;
}

.slider {
    width: 100%;
    background: linear-gradient(to right, #4bbcd8, #c0449e);
    color: rgb(0, 0, 0);
    display: flex;
    padding: 1.2rem 0;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}

.slider-track {
    display: flex;
    animation: ticker 15s linear infinite;
}

.slider-track h2 {
    margin-right: 3rem;
    flex-shrink: 0;
    font-weight: 600;
}

.slider-track h2:nth-child(odd) {
    font-weight: 300;
}

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.main-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28rem;

    @media (min-width: 450px) {
        height: 35rem;
        margin-bottom: 5rem;
    }

    @media (min-width:768px) {
        margin-top: 3rem;
    }

    @media (min-width:950px) {
        margin-bottom: 8rem;
    }
} 

.main-img img{
    width: 100%;

    @media (min-width:568px) {
        max-width: 40rem;
    }
}

.socials{
    margin: 0 auto;
    width: 78%;
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    max-width: 350px;

    @media (min-width:950px) {
        max-width: 400px;
    }
}

.socials img{
    width: 3rem;
    cursor: pointer;
    opacity: .9;
    transition: all 0.2s;

    @media (min-width:950px) {
        width: 3.5rem;
    }
}

.socials img:hover{
    transform: scale(1.1);
}