* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
}

.top {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: center;
    height: 100vh;
    opacity: 1;
    color: white;
    background-image: url(../gif/giphy.gif);
    background-size: cover;
    padding: 0;
    margin: 0;
}

.top_text {
    margin-top: 20vh;
    text-align: center;
    font-size: 10vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}

.container {
    width: auto;
    margin: auto;
    margin-top: 0;
    font-size: 1vw;
    height: auto;
    text-align: center;
    background-color: white;
}

.container_info {
    width: auto;
    height: auto;
    margin-top: 12vh;
    font-size: 5vw;
    color: white;
    background: black;
}

.container_text {
    padding-top: 2vw;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.container_text button {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px 50px;
    color: white;
    background-color: black;
}

.container_text button:hover {
    background-color: gray;
}

.container_img {
    margin-top: 180px;
    width: 500px;
    height: auto;
}

#autoForm {
    margin-top: 0;
    margin-left: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bike_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 50px;
    height: 700px;
    align-items: center;
    padding-bottom: 20px;
}

.model_sumary {
    margin-top: 300px;
    margin-left: 100px;
}

#bike_img {
    position: absolute;
    width: 36vw;
    height: auto;
    top: 203vh;
    height: auto;
}

footer {
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: #fff;
    padding: 5px;
}

.socials a i {
    font-size: 1.1rem;
    width: 20px;
    transition: color .4s ease;
}

.socials a:hover i {
    color: gray;
}

@media (max-width: 1300px) {
    #bike_img {
        top: 220vh;
    }
}

@media (max-width: 1100px) {
    #bike_img {
        top: 220vh;
        width: 40vw;
    }
    .model_sumary {
        margin-top: 390px;
    }
}

@media (max-width: 900px) {
    #bike_img {
        top: 230vh;
        width: 50vw;
    }
    .model_sumary {
        margin-top: 490px;
        margin-left: 60px;
    }
}

@media (max-width: 750px) {
    .model_sumary {
        margin-top: 250px;
    }
    .container_img {
        width: 300px;
    }
}

@media (max-width: 470px) {
    #bike_img {
        width: 50vw;
        top: 235vh;
    }
    .model_sumary {
        margin-top: 250px;
    }
}

@media (max-width: 365px) {
    #bike_img {
        top: 235vh;
    }
    .model_sumary {
        margin-top: 120px;
    }
}