* {
    box-sizing: border-box;
}

body {
    margin: 50px 100px;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.texto {
    animation: texto 2s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;

    gap: 10px;
}

h4 {
    font-size: 20px;
    margin: 0;
    color: grey;
}

main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    height: calc(100vh - 150px);

    gap: 20px;
}

h1 {
    font-size: 4vw;
}

main > img {
    height: 100%;
    width: 100%;
    animation: imagen 2s ease-in-out;
}

.btn {
    display: flex;
    margin: 40px 0;
    gap: 20px;
}

.btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 0;
    background-color: black;
    border-radius: 10px;
    cursor: pointer;

    gap: 10px;
}

.btn1 > a {
    text-decoration: none;
    color: white;
    font-size: 1.3vw;
    font-weight: bold;
}

.btn1 > img {
    width: 20%;
}

.btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: black;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    border: solid 1px black;

    gap: 10px;
}

.btn2 > a {
    text-decoration: none;
    color: black;
    font-size: 1.3vw;
    font-weight: bold;
}

.btn2 > img {
    width: 20%;
}

@keyframes texto {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes imagen {
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsi telefonos */

@media (max-width: 668px){
    body {
        margin: 20px;
    }
    main{
        display: grid;
        grid-template-columns: 1fr;
    }
    h1{
        font-size: 8vw;
    }
    .description {
        text-align: center;
    }
    .btn {
        display: flex;
        justify-content: center;
    }
    .btn1 > a, .btn2 > a {
        font-size: 4vw;
    }
    main > img {
        animation: identifier 2s ease-in-out;
    }

    @keyframes identifier {
        0%{
            transform: translateY(100px);
            opacity: 0;
        }
        100%{
            transform: translateY(0);
            opacity: 1;
        }
    }
}