* {
    padding: 0;
    margin: 0;
}
    header{
        width: 100%;
        height: 100vh;
        background: url('image/Fast\ Food.jpg') no-repeat center center / cover;
        display: flex;
        justify-content: center;
        align-items: center;
    }
h1{
    font-size: 60px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    text-overflow: 0 0 10px orange;
    animation: myshadow 3s linear infinite;
}

@keyframes myshadow {
    100% {
        text-shadow: 0 0 40px orange; 
    }
}

section {
    padding: 20px 0;
    margin: 20px 0;
}   

.row{
    width: 1140px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row .col{
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
}

.col img{
    width: 100%;
    height: 100%;   
    animation: aylan 5s linear infinite;
}

@keyframes aylan {
    100% {
       transform: rotate(360deg);
    }
    }

    footer{
        padding: 10px o;
        background-color: black;
        color: white;
        text-align: center;
    }

    main{
        margin: 20px 0;
    }

    main img{
        width: 300px;
        height: 300px;
    }

    .rang{
        font-size: 60px;
        color: black;
    }