/*
Theme Name: My_theme
Theme URI: http://example.com/my-theme
Description: WordPress theme
Author: Irakly
Author URI: http://example.com
Version: 1.0
*/
body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    color: black;
    padding: 10px 0;
    text-align: center;
}

.language-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

select {
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: white;
}

main {
    padding: 20px;
}

.button {
    font-family: 'Courier New', Courier, monospace;
    display: block;
    width: 10cm;
    max-width: 100%;
    margin: 0 auto 10px auto;
    padding: 10px;
    font-size: 18px;
    background-color: #4c7d51;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background-color: #386b3d;
}

form {
    background-color: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    max-width: 10cm;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 25px;
    border: 1px solid #ccc;
}

button.submit, button.back {
    background-color: #4c7d51;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px;
}

button.submit:hover, button.back:hover {
    background-color: #386b3d;
}

#results p {
    background-color: white;
    padding: 10px;
    border-radius: 25px;
    margin: 10px 0;
    text-align: center;
    max-width: 10cm;
    margin: 0 auto 10px auto;
}

.center {
    text-align: center;
}

.site-logo img {
    max-width: 300px; 
    height: auto; 
}

.social-icons {
    text-align: center; 
}

.social-icons li {
    display: inline-block; 
    margin-right: 10px; 
}

.social-icons img {
    width: 50px; 
    height: 50px; 
}
