* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #222;

}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 5em;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 300px;
}   

.item {
    height: 40%;
    width:40% ;
}

.container .item {
    transition: .5s;
}

.btn {
    background-color: yellow;
    color: seagreen;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    transform: translateX(600px);
    
}

.cntr {
    transform: translateY(-200px);
}

.a {
    text-decoration: none;
}









