*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0048af;
}

#load{
    background-color: white;
    width: 320px;
    display: flex;
    flex-direction: column;
    padding:  20px;
    justify-content: center;
    align-items: center;
    height: 600px;
    box-shadow: 2px 5px 10px black;
    border-radius: 30px;
}

h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
#segunda {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

p {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin-bottom: 30px;
}

img{
    width: 150px;
}

a{
    text-decoration: none;
    cursor: default;
}

#whatsapp{
    /* border: solid 2px black; */
    border-radius: 15px;
    padding: 10px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background-color: rgb(59 192 77);
    box-shadow: 2px 5px 10px rgb(0, 0, 0);
    display: flex;
    align-items: center;

}

#facebook{
    /* border: solid 2px black; */
    border-radius: 15px;
    padding: 10px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background-color: rgb(8 102 255);
    box-shadow: 2px 5px 10px rgb(0, 0, 0);
    display: flex;
    align-items: center;

}

#whatsapp img{
    width: 30px;
    margin-right: 5px;
}

#facebook img{
    width: 30px;
    margin-right: 7px;
}

#arrow {
    width: 50px;
    animation: rotar 2s linear infinite;
    margin-bottom: 15px;
}

@keyframes rotar {
    0% { transform: rotate(0deg);}
    50% { transform: rotate(180deg);}
    100% { transform: rotate(360deg);}
}

