*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
body{
    display:flex;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
    padding: 30px 10px;
    background: #000;
    transition: background 0.4s ease-in;
}

.menu{
    background: #40E0D0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    transition: box-shadow 5s ease-in-out;
    z-index: 1;
}

.menu:hover{
    box-shadow: 0 0 0 8px #40E0D0, 0 0 0 8px #40E0D0;
}

.hamburguer{
    position: relative;
    display: block;
    background: #000;
    width: 30px;
    height: 2px;
    top: 30px;
    left: 15px;
    transition: .5s ease-in-out;
}

.hamburguer:before,
.hamburguer:after{
    background: #000;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: .5s ease-in-out;
}

.hamburguer:before{
    top: -10px;
}
.hamburguer:after{
    bottom: -10px;
}
input{
    display:none;
}
input:checked ~ ul{
   opacity: 1;
   z-index: 2;
}

input:checked ~ label .menu{
    box-shadow: 0 0 0 130vw #000, 0 0 0 130vw #000;
}

input:checked ~ label .hamburguer{
    transform: rotate(45deg);
}
input:checked ~ label .hamburguer:before{
    transform: rotate(90deg);
    top: 0;
}
input:checked ~ label .hamburguer:after{
    transform: rotate(100deg);
    bottom: 0;
}
ul{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    opacity: 0;
    transition: .25s 1s ease-in-out;
}


.a1{
    display:block;
    margin-bottom: 40px;
    color: #fff;
    font-size: 47px;
    text-decoration: none;
    font-family: Courier New;
    text-align: center;
    transition: all 0.5s ease-out;
}

.a1:hover,
.a1:focus {
  color: #060d13;
  background-color: #b3ffb3;
  transform: scale(1.1);
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  /* Card */
  .card {
    width: 300px;
    height: 460px;
    margin: 25px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
    transition: 0.3s;
  }
  
  /* Card Header*/
  .card-header {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  
  .card-img {
    min-width: 100%;
    width: auto;
    height: 100%;
  }
  
  /* Card Body */
  .card-body {
    height: 170px;
    padding: 15px;
    text-align: center;
    font-family: sans-serif;
  }
  
  .card-local {
    font-size: 16px;
    margin: 10px 0;
  }
  
  .card-titulo {
    font-size: 32px;
    margin: 15px 0;
  }
  
  .card-texto {
    font-size: 12px;
    width: 250px;
    margin: 0 auto;
  }
  
  /* Card Footer */
  .card-footer {
    margin-top: 10px;
    text-align: center;
    background-color: #000;
  }
  
  .card-footer a {
    color: #fff;
    display: block;
    padding: 16px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 600;
  }
  
  /* Cores Cards */
  .card-1 .card-footer {
    background-color: #2740d1;
  }
  
  .card-1 .card-local {
    color: #2740d1;
  }
  
  .card-2 .card-footer {
    background-color: #d12761;
  }
  
  .card-2 .card-local {
    color: #d12761;
  }
  
  .card-3 .card-footer {
    background-color: #00c702;
  }
  
  .card-3 .card-local {
    color: #00c702;
  }
  
  /* Animação Hover */
  .card:hover {
    transform: scale3d(1.1, 1.1, 1);
  }