/* Default styles for all screen sizes */
* {
    margin: 2px;
    padding: 0;
    box-sizing: border-box;
}
body{background: #fffdfd;}
.container {
    margin-left: 30%;
    text-align: center;
    padding: 10px;
    width: 550px;
    justify-content: start;
    display: flex;
    border: 2px solid green;
    border-top-right-radius: 15%;
    border-bottom-left-radius: 15%;
}

.logo {
    width: 200px;
    height: 190px;
    display: inline-block;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-origin: border-box;
}

.info {
    text-align: center;
    width: 300px;
    height: 250px;
    display: inline-grid;
}

img {
    width: 190px;
    border-radius: 10%;
}

header {
    width: 100%;
    height: 500px;
    justify-content: space-between;
    color: antiquewhite;
    background-image: url("two.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: blur(1px);
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 50%;
    padding: 20px 0px;
    text-align: center;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 3px solid gold;
    background-color: rgba(226, 254, 185, 0.484);
    color: rgb(7, 5, 3);
    font-size: 30px;
    border: 10px inset greenyellow;
}

footer {
    margin-top: 20px;
    width: 100%;
    height: 200px;
    background-color: rgb(194, 188, 188);
}

a {
    font-size: 35px;
    color: black;
}

.btn {
    width: 22%;
    font-size: 17px;
    background-color: aqua;
    color: rgb(2, 2, 2);
    border-radius: 5px;
}

input {
    width: 50%;
    font-size: 20px;
    background-color: rgb(245, 255, 255);
    color: rgb(2, 2, 2);
    border-radius: 5px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .container {
        margin-left: 2%;
        width: 342px;
        padding: 0px;
        display: flow-root;

    }

    .logo {
        width: 100%;
        height: auto;
    }

    .info {
        width: 100%;
       
    }

    header {
        height: 300px;
    }

    .text {
        position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 80%;
    text-align: center;
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
   
    }

    .btn {
        margin-left: 20px;
        text-align: center;
        width: 40%;
    }

    input {
        width: 80%;
    }
    button{
      margin-left: 30%;
        width: 40%;
    }
    a{
        font-size: 25px;
    }
}
