@import url('https://fonts.googleapis.com/css2?family=Iceberg');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

body{
    margin: 0;
    font-family: Poppins;
    color: #303030;
    font-size: 20px;
}

.wrapper-cover {
    width: 100%;
    margin: 0px;
    height: 480px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.wrapper-cover .cover {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
}

.wrapper-cover .cover h1 {
    color: white;
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    text-align: center;
    margin: 0px;
    animation: appear 2s  ease-in-out forwards;
}

.wrapper-cover .cover .cover-btn{
    text-align: center;
    background-color: transparent;
    border: solid 1px;
    border-color: white;
    border-radius: 10px;
    padding: 5px 40px;
    color: white;
    font-family: Iceberg;
    font-size: 18px;
    margin-top: 30px;
    animation: appear 2s  ease-in-out forwards;
}

.wrapper-cover .cover img {
    width: 500px;
    animation: appear 2s  ease-in-out forwards;
}

.wrapper-cover .cover p {
    font-size: 18px;
    text-align: center;
    color: white;
    max-width: 700px;
    animation: appear 2s  ease-in-out forwards;
}

.wrapper-cover .cover .cover-btn:hover {
    cursor: pointer;
    background-color: white;
    color: #0567AD;
    border-color: #0567AD;
}

  @keyframes appear{
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

@media screen and (max-width: 980px) {
    .wrapper-cover .cover h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .wrapper-cover .cover img {
        width: 380px;
    }
    .wrapper-cover .cover p {
        max-width: 560px;
        font-size: 15px;
    }
}

@media screen and (max-width: 840px) {
    .wrapper-cover {
        height: 350px;
    }
    .wrapper-cover .cover h1 {
        font-size: 30px;
        line-height: 35px;
    }
    .wrapper-cover .cover img {
        width: 280px;
    }
    .wrapper-cover .cover p {
        max-width: 420px;
        font-size: 14px;
    }
}

@media screen and (max-width: 720px) {
    .wrapper-cover .cover h1 {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 23px;
        line-height: 28px;
    }
    .wrapper-cover .cover .cover-btn{
        padding: 5px 20px;
        font-size: 15px;
    }
    .wrapper-cover .cover img {
        width: 220px;
    }
    .wrapper-cover .cover p {
        max-width: 340px;
        font-size: 13px;
    }
}