*{
    box-sizing: border-box;
}

body {
    background-color: rgb(0, 10, 32);
    margin: 0;
}

a:focus-visible, .card:focus-visible {
    outline: 3px solid yellow;
    outline-offset: 3px;
}

a:focus {
    outline: none;
}

.card:focus {
    outline: none;
}

a:focus-visible, .card:focus-visible {
    outline: 3px solid yellow;
    outline-offset: 3px;
}

header{
    width: 100%;
    text-align: center;
}

header h1{
    font-family: "Sixtyfour", sans-serif;
    color: yellow;
    font-size: clamp(40px,6vw,70px);
    margin: clamp(10px, 2vw, 20px) 0 5px 0;
}

nav{
    width: 100%;
    background: rgb(0, 10, 32);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px,2vw,25px);
    padding: 10px 0 20px 0;
}

nav a{
    font-family: "Pixelify Sans", sans-serif;
    text-decoration: none;
    color: yellow;
    font-size: clamp(14px,2vw,22px);
    padding: 0 10px;
    -webkit-text-stroke: 0.2px white;
}

nav span {
    color:yellow;
    -webkit-text-stroke: 0.2px white;
}

nav a:hover,
nav a:focus {
    color: white;
}

.headerImage{
    width: 100%;
    height: clamp(150px,20vw,280px);
    background-image: url(../assets/Images/Page/headerImage.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.receitas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px,4vw,40px);
    width: 90%;
    max-width: 1100px;
    margin: clamp(20px, 4vw, 40px) auto;
}

.card {
    background: #051330;
    display: flex;
    align-items: center;
    gap: clamp(10px,2vw,20px);
    border: 3px solid yellow;
    border-radius: 15px;
    padding: clamp(10px,2vw,20px);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: clamp(90px,12vw,150px);
    height: clamp(90px,12vw,150px);
    border-radius: 5px;
    object-fit: cover;
}

.card:hover,
.card:focus {
    transform: scale(1.05);
    box-shadow: 0 15px 30px yellow;
}

.logo {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.logo img {
    width: clamp(35px,5vw,50px);
    height: clamp(35px,5vw,50px);
    border-radius: 50%;
    border: 2px solid yellow;
    background-color: rgb(0, 10, 32);
}

.info h2{
    color: white;
    font-size: clamp(18px,2vw,26px);
    font-family: "Pixelify Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    -webkit-text-stroke: 0.1px white;
}

.info p{
    color: white;
    font-size: clamp(12px,1.5vw,16px);
    font-family: "Jersey 10", sans-serif;
    font-weight: 300;
    text-align: justify;
}

.footerDoSite {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background-color:rgb(0, 6, 20);
    padding: 40px 5%;
    margin-top: 120px;
}

.footerDoSite .about,
.footerDoSite .turma,
.footerDoSite .integrantes {
    flex: 1;
    min-width: 250px;
}

.about h3,
.turma h3,
.integrantes h3{
    font-family: "Pixelify Sans", sans-serif;
    color: yellow;
    text-align: center;
    -webkit-text-stroke: 0.1px white;
}

.turma p,
.integrantes p{
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    text-align: center;
    color: white;
}

.about p{
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    text-align: justify;
    color: white;
}

html {
    scroll-behavior: smooth;
}

.highlight h3,
.highlight p {
    animation: piscarTexto 1s ease-in-out ;
}

@keyframes piscarTexto {

    0% {
        -webkit-text-stroke: 0.1px white;
        text-shadow: none;
    }

    50% {
        -webkit-text-stroke: 0.1px white;
        text-shadow: 0 0 5px yellow, 0 0 5px yellow;
    }

    100% {
        -webkit-text-stroke: 0.1px white;
        text-shadow: none;
    }

}

@media (max-width: 768px) {
    .receitas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .card {
        align-items: center;
    }
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}