html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: linear-gradient(90deg,rgba(28, 137, 214, 1) 0%, rgba(0, 195, 255, 1) 50%, rgba(16, 99, 232, 1) 100%);
}




.drink-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.drink-container {
    padding: 20px;
}

.drink-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 100%;
    
}

    .drink-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }


.dryckinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 7px;
    margin-top: 13px;
    margin-left: 11%;
    width: 100%;
    background-color: white;
}

.dryckinfo-text {
    width: 16%;
    text-align: center;
}

.dryckinfo-text-date {
    width: 16%;
    text-align: center;
    
}
    
.drick-bild {
    margin-bottom: 20px;
    margin-left: 28%;
    border-radius: 10px;
    height: 20vw;
    width: 28vw
}
