body {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Zarovnání obsahu na střed vertikálně */
    height: 100vh; /* Nastavení výšky na celou výšku okna pro vertikální zarovnání */
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: rgba(248, 255, 60, 0.4);

}

main {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Zarovnání obsahu na střed vertikálně */
    align-items: center; /* Zarovnání obsahu na střed horizontálně */
    text-align: center; /* Zarovnání obsahu na střed horizontálně */
    margin-bottom: 100px;
}

h1 {
    color: rgb(0, 67, 145);
}

header {
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: rgb(0, 67, 145);
}

.contact-link {
    position: fixed;
    top: 60px;
    left: 20px;
    color: red;
    text-shadow: 1px 1px rgba(51, 51, 51, 0.5);
    font-size: 24px;
}

.text {
    font-weight: bold;
    text-align: center;
    color: rgb(0, 67, 145);
}

.name {
    margin-bottom: 40px;
    font-size: 18px;
}

.phone, .email, .facebook {
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
    cursor: pointer;
    color: rgb(81, 3, 3);
}


.phone-container, .email-container, .facebook-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; /* Zarovnání na střed vertikálně */
}

.email-container {
    margin-top: 10px;
}
.facebook-container {
    margin-top: 40px;
}
/* Styl pro ikonu telefonu */
.phone-container img, .email-container img, .facebook-container img {
    width: 30px; /* Přizpůsobení šířky ikony podle potřeby */
    height: 30px; /* Přizpůsobení výšky ikony podle potřeby */
    cursor: pointer;
}

.emailimg, .phoneimg, .facebookimg {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.adress {
    background-color: rgb(126, 122, 122);
    padding: 4px;
    color: white;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    text-align: center;
}

.adress-name {
    color: rgb(255, 255, 255);
    font-size: 15px;
}
@media screen and (max-width: 768px) {
    .name {
        font-size: 16px;
    }
    h1 {
        font-size: 25px;
    }
    .phone, .email, .facebook {
        font-size: 15px;
    }
    .adress {
        margin-top: 20px;
    }
    .adress-name {
        font-size: 10px;
    }
    /* Sem vložte pravidla pro responsivní design pro obrazovky s maximální šířkou 768px */
}
