@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    background-color: #2a335c;
    color: rgb(243, 232, 232);
  font-family: sans-serif; 
	padding-top: 140px;
	text-align:justify;
	overflow-x: hidden;
}

.sosyal-medya-genel {
    position: fixed; 
    top: 0;         
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #0B0D17;
    z-index: 1001; 
    margin-bottom:40px;
   display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 50px; 
    box-sizing: border-box;
}

.sosyal-medya-sag {
    display: flex; 
	gap: 20px; 
}

.sosyal-medya-genel i {
    color: rgb(243, 232, 232);         /* ikon rengi */
    font-size: 24px;           
    transition: all 0.3s;  
  justify-content: flex-end; /*içeriği en sağa yaslar*/
}

.sosyal-medya-sol a{
	text-decoration: none;
	color: rgb(243, 232, 232);
}

.sosyal-medya-sol a:hover{
	color: #6c789d;
}

.header {
    width: 100%;
    height: 80px;
    background-color: #0c1735;
	position: fixed;
    display: flex;
    padding-top: 20px;
    justify-content: center;
	top: 40px;
    left: 0;
	z-index: 1000;	
}

.header ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header ul li a {
    color: rgb(243, 232, 232);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px; 
    position: relative;
    padding: 8px 12px;
    display: inline-block;
    transition: color 0.3s ease;
}

.header ul li a:hover {
    color: #6c789d;
}

.header ul li a::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -1px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #6c789d;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-sizing: border-box;
}

.header ul li a:hover::before {
    opacity: 1;
}

.dropdown {
    position: relative; 
}

.dropdown-content {
    position: absolute;
    display: none;
    background-color: #1c2541;
    padding: 10px 0;
    border-radius: 8px;
    top: 100%; 
    left: 0;
    min-width: 180px;
    z-index: 10;
}

.dropdown-content ul {
    display: block; 
    padding: 0;
    margin: 0;
}

.dropdown-content li {
    display: block;
}

.dropdown-content li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6; 
}

h3 {
    font-weight: 400;
    font-size: 18px;
}

.dunya-container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-top: 60px;
    padding: 0 80px;
}

.dunya {
	padding:50px;
    width: 400px;
    height: 400px;
    animation: donus 30s linear infinite;
}

@keyframes donus {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #0c1735;
    margin-top: 50px;
}

.footer h3 {
	font-weight: 300;
    margin: 0; 
    padding: 0;
     line-height: 1.8;
    color: #e0e0e0;
}

.footer-link {
    display: inline-block;
    color: #6c789d;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #6c789d;
    padding: 5px 15px;
    width: fit-content; /* Sadece yazı kadar yer kaplasın */
    margin-top: 10px;
	border-radius: 15px;
}

.cevap {
    background-color: rgba(12, 23, 53, 0.6);
    width: 380px;
    height: 55px;
    border-radius: 25px;
    margin: 60px auto;   
    display: flex;       
    align-items: center;
    justify-content: center;
}
