@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

html {
    background-color: black;
}

body {
    margin: 0;
    padding: 0;
    background: url(images/background.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    height: 100vh;
    user-select: none;
}

.box img {
    width: 200px;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.box img:hover {
    transform: scale(1.05);
    border: 1px white solid;
    box-shadow: 0px 0px 10px white;
}

.box {
    height: 600px;
    width: 400px;
    background-color: #402a23;
    border-radius: 20px;
    color: white;
    padding: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    transform: translateY(-1000px);
    animation: fly 1s forwards ease-out;
}

@keyframes fly {
    to {
        transform: translateY(0px);
    }
}

.box:hover {
    transform: scale(1.03);
    border: 1px white solid;
    box-shadow: 0px 0px 20px white;
}

.caca1 {
    transition: all 0.5s;
}

.caca1:hover {
    transform: rotate(360deg);
}

.box h1 {
    opacity: 0.8;
    font-weight: bold;
    letter-spacing: 2px;
}

.box h2 {
    opacity: 0.8;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 5px;
}

.box p {
    font-weight: 300;
    opacity: 0.8;
    /* text-align: justify; */
}

.iconlar a {
    color: white;
    opacity: 0.7;
    transition: 0.3s;
}

.iconlar li {
    font-size: 40px;
}

.iconlar li a {
    text-decoration: none;
}

.iconlar li a img {
    width: 40px;
    height: 40px;
}

.box ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.box ul li:hover {
    transform: scale(1.5);
}

.box ul li {
    transition: .5s;
}

.box ul a:hover {
    opacity: 1;
}

@media (max-width: 435px) and (max-height: 935px) {
    .box {
        border-radius: 20px;
        height: 325px;
        width: 230px;
    }

    body {
        font-size: 10px;
    }

    .box img {
        width: 100px;
    }

    .iconlar li {
        font-size: 20px;
        margin-top: 10px;
    }

    .iconlar li a img {
        width: 20px;
        height: 20px;
    }

    .box ul {
        gap: 20px;
    }

    .box p {
        font-size: 8px;
        font-weight: 200;
        opacity: 0.8;
        padding: 0px 8px;
        /* text-align: justify; */
    }
}
