@charset "UTF-8";
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Chewy&family=Gabarito:wght@400..900&family=Golos+Text:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kaushan+Script&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap" rel="stylesheet">

* {
    margin: 0px;
    padding: 0px;
}

html {
    background-color: black;

}

body {
    background-color: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
    font-family: "Inter", sans-serif;
    /*margin-left: 100px;
    margin: auto;
    height: 544px;
    padding: 200px 10px 200px 10px;
    background-color: hsl(0, 0%, 8%);*/
}

main {
    margin: auto;
    min-width: 300px;
    max-width: 1000px;
    width: 300px;
    height: 565px;
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
}


img {
    margin: 45px auto 0px auto;
    border-radius: 50%;
    display: block;
}

h1 {
   color: aliceblue;
   text-align: center;
   font-weight: 600;
   font-size: 1.5em;
   text-shadow: 1px 1px 0px rgb(0, 0, 0, 0.260);
   padding-top: 12px;
   margin-bottom: 0px;
   
}

h2 {
    color: hsl(75, 94%, 57%);
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 0px rgb(0, 0, 0, 0.260);
    margin-top: 6px;
}

p {
    color: white;
    font-size: 0.8em;
    font-weight: lighter;
    text-align: center;
    padding-top: 11px;
    padding-bottom: 4px;
}

.button-container  {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

button{
    padding: 12px 20px;
    background-color: hsl(0, 0%, 20%);
    color: aliceblue;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 240px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9em;
}

button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 0%);
    transition: 1s;
}
